output.js 678 B

1234567891011121314151617181920
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define(["foo-bar", "./mylib/foo-bar", "fizzbuzz"], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory(require("foo-bar"), require("./mylib/foo-bar"), require("fizzbuzz"));
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
  11. global.input = mod.exports;
  12. }
  13. })(this, function (_fooBar, _fooBar2, _fizzbuzz) {
  14. "use strict";
  15. _fooBar = babelHelpers.interopRequireDefault(_fooBar);
  16. _fooBar2 = babelHelpers.interopRequireDefault(_fooBar2);
  17. _fizzbuzz = babelHelpers.interopRequireDefault(_fizzbuzz);
  18. });