index.cjs.js 288 B

12345678910111213141516171819
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. function testA() {
  4. return 'testA';
  5. }
  6. function testB() {
  7. return 'testB';
  8. }
  9. function justTest() {
  10. return 'just a test';
  11. }
  12. exports.default = justTest;
  13. exports.testA = testA;
  14. exports.testB = testB;