安装包

This commit is contained in:
zhengw
2026-01-28 17:14:38 +08:00
parent 365fcdb19a
commit af7928d39d
6 changed files with 38 additions and 19 deletions

View File

@@ -4,11 +4,11 @@ var __DEFINE__ = function(modId, func, req) { var m = { exports: {}, _tempexport
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__(1767939516023, function(require, module, exports) {
__DEFINE__(1769409566130, function(require, module, exports) {
/*
* big.js v7.0.1
* big.js v6.2.2
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2025 Michael Mclaughlin
* Copyright (c) 2024 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
*/
;(function (GLOBAL) {
@@ -96,9 +96,7 @@ __DEFINE__(1767939516023, function(require, module, exports) {
var x = this;
// Enable constructor usage without new.
if (!(x instanceof Big)) {
return n === UNDEFINED && arguments.length === 0 ? _Big_() : new Big(n);
}
if (!(x instanceof Big)) return n === UNDEFINED ? _Big_() : new Big(n);
// Duplicate.
if (n instanceof Big) {
@@ -639,8 +637,8 @@ __DEFINE__(1767939516023, function(require, module, exports) {
return this.minus(x.times(y));
};
/*
* Return a new Big whose value is the value of this Big negated.
*/
@@ -1052,7 +1050,7 @@ __DEFINE__(1767939516023, function(require, module, exports) {
})(this);
}, function(modId) {var map = {}; return __REQUIRE__(map[modId], modId); })
return __REQUIRE__(1767939516023);
return __REQUIRE__(1769409566130);
})()
//miniprogram-npm-outsideDeps=[]
//# sourceMappingURL=index.js.map

File diff suppressed because one or more lines are too long