56 lines
2.9 KiB
JavaScript
56 lines
2.9 KiB
JavaScript
module.exports = (function() {
|
|
var __MODS__ = {};
|
|
var __DEFINE__ = function(modId, func, req) { var m = { exports: {}, _tempexports: {} }; __MODS__[modId] = { status: 0, func: func, req: req, m: m }; };
|
|
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; };
|
|
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; } };
|
|
var __REQUIRE_DEFAULT__ = function(obj) { return obj && obj.__esModule ? obj.default : obj; };
|
|
__DEFINE__(1738455898117, function(require, module, exports) {
|
|
|
|
|
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
var originalGetProto = require('./Object.getPrototypeOf');
|
|
|
|
var getDunderProto = require('dunder-proto/get');
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = reflectGetProto
|
|
? function getProto(O) {
|
|
// @ts-expect-error TS can't narrow inside a closure, for some reason
|
|
return reflectGetProto(O);
|
|
}
|
|
: originalGetProto
|
|
? function getProto(O) {
|
|
if (!O || (typeof O !== 'object' && typeof O !== 'function')) {
|
|
throw new TypeError('getProto: not an object');
|
|
}
|
|
// @ts-expect-error TS can't narrow inside a closure, for some reason
|
|
return originalGetProto(O);
|
|
}
|
|
: getDunderProto
|
|
? function getProto(O) {
|
|
// @ts-expect-error TS can't narrow inside a closure, for some reason
|
|
return getDunderProto(O);
|
|
}
|
|
: null;
|
|
|
|
}, function(modId) {var map = {"./Reflect.getPrototypeOf":1738455898118,"./Object.getPrototypeOf":1738455898119}; return __REQUIRE__(map[modId], modId); })
|
|
__DEFINE__(1738455898118, function(require, module, exports) {
|
|
|
|
|
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
|
|
}, function(modId) { var map = {}; return __REQUIRE__(map[modId], modId); })
|
|
__DEFINE__(1738455898119, function(require, module, exports) {
|
|
|
|
|
|
var $Object = require('es-object-atoms');
|
|
|
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
module.exports = $Object.getPrototypeOf || null;
|
|
|
|
}, function(modId) { var map = {}; return __REQUIRE__(map[modId], modId); })
|
|
return __REQUIRE__(1738455898117);
|
|
})()
|
|
//miniprogram-npm-outsideDeps=["dunder-proto/get","es-object-atoms"]
|
|
//# sourceMappingURL=index.js.map
|