Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/81/9e676e34208694aaa686add0c30b7062d0167b6f954a8bdebf146cfac7b72565e396e0
T
2025-10-24 02:48:32 +00:00

1 line
6.0 KiB
Plaintext

{"dependencies":[{"name":"../hex/toBn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":41,"index":41}}],"key":"AtmX3Wke/eE6lMjd02rfvvz0UJA=","exportNames":["*"],"imports":1}},{"name":"../is/bigInt.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":42},"end":{"line":2,"column":43,"index":85}}],"key":"ZY3681tpxOjEsetB5k8ywZhLiU4=","exportNames":["*"],"imports":1}},{"name":"../is/hex.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":86},"end":{"line":3,"column":37,"index":123}}],"key":"FRvNFhyKsGuWVMufkKejTO9l7S0=","exportNames":["*"],"imports":1}},{"name":"../is/toBigInt.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":124},"end":{"line":4,"column":47,"index":171}}],"key":"N/toHvrdiOQdWVOVcFrzRFTwbic=","exportNames":["*"],"imports":1}},{"name":"../is/toBn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":172},"end":{"line":5,"column":39,"index":211}}],"key":"9jxmCO7ndQCy3Q4BXgj6sT6fwro=","exportNames":["*"],"imports":1}},{"name":"./bn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":212},"end":{"line":6,"column":29,"index":241}}],"key":"KMp21tGoUZCyAffk4D/MJTGm4VE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n exports.bnToBn = bnToBn;\n var _hexToBnJs = require(_dependencyMap[0], \"../hex/toBn.js\");\n var _isBigIntJs = require(_dependencyMap[1], \"../is/bigInt.js\");\n var _isHexJs = require(_dependencyMap[2], \"../is/hex.js\");\n var _isToBigIntJs = require(_dependencyMap[3], \"../is/toBigInt.js\");\n var _isToBnJs = require(_dependencyMap[4], \"../is/toBn.js\");\n var _bnJs = require(_dependencyMap[5], \"./bn.js\");\n /**\n * @name bnToBn\n * @summary Creates a BN value from a BN, bigint, string (base 10 or hex) or number input.\n * @description\n * `null` inputs returns a `0x0` result, BN values returns the value, numbers returns a BN representation.\n * @example\n * <BR>\n *\n * ```javascript\n * import BN from 'bn.js';\n * import { bnToBn } from '@polkadot/util';\n *\n * bnToBn(0x1234); // => BN(0x1234)\n * bnToBn(new BN(0x1234)); // => BN(0x1234)\n * ```\n */\n function bnToBn(value) {\n return value ? _bnJs.BN.isBN(value) ? value : (0, _isHexJs.isHex)(value) ? (0, _hexToBnJs.hexToBn)(value.toString()) : (0, _isBigIntJs.isBigInt)(value) ? new _bnJs.BN(value.toString()) : (0, _isToBnJs.isToBn)(value) ? value.toBn() : (0, _isToBigIntJs.isToBigInt)(value) ? new _bnJs.BN(value.toBigInt().toString()) : new _bnJs.BN(value) : new _bnJs.BN(0);\n }\n});","lineCount":33,"map":[[7,2,23,0,"exports"],[7,9,23,0],[7,10,23,0,"bnToBn"],[7,16,23,0],[7,19,23,0,"bnToBn"],[7,25,23,0],[8,2,1,0],[8,6,1,0,"_hexToBnJs"],[8,16,1,0],[8,19,1,0,"require"],[8,26,1,0],[8,27,1,0,"_dependencyMap"],[8,41,1,0],[9,2,2,0],[9,6,2,0,"_isBigIntJs"],[9,17,2,0],[9,20,2,0,"require"],[9,27,2,0],[9,28,2,0,"_dependencyMap"],[9,42,2,0],[10,2,3,0],[10,6,3,0,"_isHexJs"],[10,14,3,0],[10,17,3,0,"require"],[10,24,3,0],[10,25,3,0,"_dependencyMap"],[10,39,3,0],[11,2,4,0],[11,6,4,0,"_isToBigIntJs"],[11,19,4,0],[11,22,4,0,"require"],[11,29,4,0],[11,30,4,0,"_dependencyMap"],[11,44,4,0],[12,2,5,0],[12,6,5,0,"_isToBnJs"],[12,15,5,0],[12,18,5,0,"require"],[12,25,5,0],[12,26,5,0,"_dependencyMap"],[12,40,5,0],[13,2,6,0],[13,6,6,0,"_bnJs"],[13,11,6,0],[13,14,6,0,"require"],[13,21,6,0],[13,22,6,0,"_dependencyMap"],[13,36,6,0],[14,2,7,0],[15,0,8,0],[16,0,9,0],[17,0,10,0],[18,0,11,0],[19,0,12,0],[20,0,13,0],[21,0,14,0],[22,0,15,0],[23,0,16,0],[24,0,17,0],[25,0,18,0],[26,0,19,0],[27,0,20,0],[28,0,21,0],[29,0,22,0],[30,2,23,7],[30,11,23,16,"bnToBn"],[30,17,23,22,"bnToBn"],[30,18,23,23,"value"],[30,23,23,28],[30,25,23,30],[31,4,24,4],[31,11,24,11,"value"],[31,16,24,16],[31,19,25,10,"BN"],[31,24,25,12],[31,25,25,12,"BN"],[31,27,25,12],[31,28,25,13,"isBN"],[31,32,25,17],[31,33,25,18,"value"],[31,38,25,23],[31,39,25,24],[31,42,26,14,"value"],[31,47,26,19],[31,50,27,14],[31,54,27,14,"isHex"],[31,62,27,19],[31,63,27,19,"isHex"],[31,68,27,19],[31,70,27,20,"value"],[31,75,27,25],[31,76,27,26],[31,79,28,18],[31,83,28,18,"hexToBn"],[31,93,28,25],[31,94,28,25,"hexToBn"],[31,101,28,25],[31,103,28,26,"value"],[31,108,28,31],[31,109,28,32,"toString"],[31,117,28,40],[31,118,28,41],[31,119,28,42],[31,120,28,43],[31,123,29,18],[31,127,29,18,"isBigInt"],[31,138,29,26],[31,139,29,26,"isBigInt"],[31,147,29,26],[31,149,29,27,"value"],[31,154,29,32],[31,155,29,33],[31,158,30,22],[31,162,30,26,"BN"],[31,167,30,28],[31,168,30,28,"BN"],[31,170,30,28],[31,171,30,29,"value"],[31,176,30,34],[31,177,30,35,"toString"],[31,185,30,43],[31,186,30,44],[31,187,30,45],[31,188,30,46],[31,191,31,22],[31,195,31,22,"isToBn"],[31,204,31,28],[31,205,31,28,"isToBn"],[31,211,31,28],[31,213,31,29,"value"],[31,218,31,34],[31,219,31,35],[31,222,32,26,"value"],[31,227,32,31],[31,228,32,32,"toBn"],[31,232,32,36],[31,233,32,37],[31,234,32,38],[31,237,33,26],[31,241,33,26,"isToBigInt"],[31,254,33,36],[31,255,33,36,"isToBigInt"],[31,265,33,36],[31,267,33,37,"value"],[31,272,33,42],[31,273,33,43],[31,276,34,30],[31,280,34,34,"BN"],[31,285,34,36],[31,286,34,36,"BN"],[31,288,34,36],[31,289,34,37,"value"],[31,294,34,42],[31,295,34,43,"toBigInt"],[31,303,34,51],[31,304,34,52],[31,305,34,53],[31,306,34,54,"toString"],[31,314,34,62],[31,315,34,63],[31,316,34,64],[31,317,34,65],[31,320,35,30],[31,324,35,34,"BN"],[31,329,35,36],[31,330,35,36,"BN"],[31,332,35,36],[31,333,35,37,"value"],[31,338,35,42],[31,339,35,43],[31,342,36,10],[31,346,36,14,"BN"],[31,351,36,16],[31,352,36,16,"BN"],[31,354,36,16],[31,355,36,17],[31,356,36,18],[31,357,36,19],[32,2,37,0],[33,0,37,1],[33,3]],"functionMap":{"names":["<global>","bnToBn"],"mappings":"AAA;OCsB;CDc"},"hasCjsExports":false},"type":"js/module"}]}