mysetup.js 166 B

12345678910
  1. var main = ({ content }) => {
  2. content.response = 42;
  3. return 'foo';
  4. };
  5. Object.defineProperty(exports, '__esModule', {
  6. value: true,
  7. });
  8. exports.default = main;