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.

33 lines
2.1 KiB

1 year ago
  1. module.exports = (function() {
  2. var __MODS__ = {};
  3. var __DEFINE__ = function(modId, func, req) { var m = { exports: {}, _tempexports: {} }; __MODS__[modId] = { status: 0, func: func, req: req, m: m }; };
  4. var __REQUIRE__ = function(modId, source) { if(!__MODS__[modId]) return require(source); if(!__MODS__[modId].status) { var m = __MODS__[modId].m; m._exports = m._tempexports; var desp = Object.getOwnPropertyDescriptor(m, "exports"); if (desp && desp.configurable) Object.defineProperty(m, "exports", { set: function (val) { if(typeof val === "object" && val !== m._exports) { m._exports.__proto__ = val.__proto__; Object.keys(val).forEach(function (k) { m._exports[k] = val[k]; }); } m._tempexports = val }, get: function () { return m._tempexports; } }); __MODS__[modId].status = 1; __MODS__[modId].func(__MODS__[modId].req, m, m.exports); } return __MODS__[modId].m.exports; };
  5. var __REQUIRE_WILDCARD__ = function(obj) { if(obj && obj.__esModule) { return obj; } else { var newObj = {}; if(obj != null) { for(var k in obj) { if (Object.prototype.hasOwnProperty.call(obj, k)) newObj[k] = obj[k]; } } newObj.default = obj; return newObj; } };
  6. var __REQUIRE_DEFAULT__ = function(obj) { return obj && obj.__esModule ? obj.default : obj; };
  7. __DEFINE__(1679542505572, function(require, module, exports) {
  8. /*!
  9. * Determine if an object is a Buffer
  10. *
  11. * @author Feross Aboukhadijeh <https://feross.org>
  12. * @license MIT
  13. */
  14. // The _isBuffer check is for Safari 5-7 support, because it's missing
  15. // Object.prototype.constructor. Remove this eventually
  16. module.exports = function (obj) {
  17. return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
  18. }
  19. function isBuffer (obj) {
  20. return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
  21. }
  22. // For Node v0.10 support. Remove this eventually.
  23. function isSlowBuffer (obj) {
  24. return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
  25. }
  26. }, function(modId) {var map = {}; return __REQUIRE__(map[modId], modId); })
  27. return __REQUIRE__(1679542505572);
  28. })()
  29. //miniprogram-npm-outsideDeps=[]
  30. //# sourceMappingURL=index.js.map