output.js 483 B

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