56 lines
2.7 KiB
JavaScript
56 lines
2.7 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__(1738455898137, function(require, module, exports) {
|
|
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var inspect = require('object-inspect');
|
|
var getSideChannelList = require('side-channel-list');
|
|
var getSideChannelMap = require('side-channel-map');
|
|
var getSideChannelWeakMap = require('side-channel-weakmap');
|
|
|
|
var makeChannel = getSideChannelWeakMap || getSideChannelMap || getSideChannelList;
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = function getSideChannel() {
|
|
/** @typedef {ReturnType<typeof getSideChannel>} Channel */
|
|
|
|
/** @type {Channel | undefined} */ var $channelData;
|
|
|
|
/** @type {Channel} */
|
|
var channel = {
|
|
assert: function (key) {
|
|
if (!channel.has(key)) {
|
|
throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
}
|
|
},
|
|
'delete': function (key) {
|
|
return !!$channelData && $channelData['delete'](key);
|
|
},
|
|
get: function (key) {
|
|
return $channelData && $channelData.get(key);
|
|
},
|
|
has: function (key) {
|
|
return !!$channelData && $channelData.has(key);
|
|
},
|
|
set: function (key, value) {
|
|
if (!$channelData) {
|
|
$channelData = makeChannel();
|
|
}
|
|
|
|
$channelData.set(key, value);
|
|
}
|
|
};
|
|
// @ts-expect-error TODO: figure out why this is erroring
|
|
return channel;
|
|
};
|
|
|
|
}, function(modId) {var map = {}; return __REQUIRE__(map[modId], modId); })
|
|
return __REQUIRE__(1738455898137);
|
|
})()
|
|
//miniprogram-npm-outsideDeps=["es-errors/type","object-inspect","side-channel-list","side-channel-map","side-channel-weakmap"]
|
|
//# sourceMappingURL=index.js.map
|