output.js 366 B

123456789101112131415161718
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define("umd/module-name/input", [], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory();
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory();
  11. global.umdModuleNameInput = mod.exports;
  12. }
  13. })(this, function () {
  14. "use strict";
  15. foobar();
  16. });