You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
386 B

4 years ago
  1. "use strict";
  2. var _model = require("./model.js");
  3. (0, _model.fun1)();
  4. (0, _model.fun2)();
  5. "use strict";
  6. Object.defineProperty(exports, "__esModule", {
  7. value: true
  8. });
  9. exports.fun2 = exports.fun1 = void 0;
  10. var fun1 = function fun1() {
  11. console.log("fun1 is called");
  12. };
  13. exports.fun1 = fun1;
  14. var fun2 = function fun2() {
  15. console.log("fun2 is called");
  16. };
  17. exports.fun2 = fun2;