output.js 375 B

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