Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/7a/1e50db7df9294f7fa0b9d712ed9faf0905b76a1f61d4bac5095b6eec5437dd436073d3
T
2025-11-08 08:58:18 +00:00

1 line
5.8 KiB
Plaintext

{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n // Copyright (C) 2016 Dmitry Chestnykh\n // MIT License. See LICENSE file for details.\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n /**\n * Package constant-time provides functions for performing algorithmically constant-time operations.\n */\n /**\n * NOTE! Due to the inability to guarantee real constant time evaluation of\n * anything in JavaScript VM, this is module is the best effort.\n */\n /**\n * Returns resultIfOne if subject is 1, or resultIfZero if subject is 0.\n *\n * Supports only 32-bit integers, so resultIfOne or resultIfZero are not\n * integers, they'll be converted to them with bitwise operations.\n */\n function select(subject, resultIfOne, resultIfZero) {\n return ~(subject - 1) & resultIfOne | subject - 1 & resultIfZero;\n }\n exports.select = select;\n /**\n * Returns 1 if a <= b, or 0 if not.\n * Arguments must be positive 32-bit integers less than or equal to 2^31 - 1.\n */\n function lessOrEqual(a, b) {\n return (a | 0) - (b | 0) - 1 >>> 31 & 1;\n }\n exports.lessOrEqual = lessOrEqual;\n /**\n * Returns 1 if a and b are of equal length and their contents\n * are equal, or 0 otherwise.\n *\n * Note that unlike in equal(), zero-length inputs are considered\n * the same, so this function will return 1.\n */\n function compare(a, b) {\n if (a.length !== b.length) {\n return 0;\n }\n var result = 0;\n for (var i = 0; i < a.length; i++) {\n result |= a[i] ^ b[i];\n }\n return 1 & result - 1 >>> 8;\n }\n exports.compare = compare;\n /**\n * Returns true if a and b are of equal non-zero length,\n * and their contents are equal, or false otherwise.\n *\n * Note that unlike in compare() zero-length inputs are considered\n * _not_ equal, so this function will return false.\n */\n function equal(a, b) {\n if (a.length === 0 || b.length === 0) {\n return false;\n }\n return compare(a, b) !== 0;\n }\n exports.equal = equal;\n});","lineCount":66,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0],[5,2,3,0],[6,2,4,0,"Object"],[6,8,4,6],[6,9,4,7,"defineProperty"],[6,23,4,21],[6,24,4,22,"exports"],[6,31,4,29],[6,33,4,31],[6,45,4,43],[6,47,4,45],[7,4,4,47,"value"],[7,9,4,52],[7,11,4,54],[8,2,4,59],[8,3,4,60],[8,4,4,61],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,2,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,2,12,0],[17,0,13,0],[18,0,14,0],[19,0,15,0],[20,0,16,0],[21,0,17,0],[22,2,18,0],[22,11,18,9,"select"],[22,17,18,15,"select"],[22,18,18,16,"subject"],[22,25,18,23],[22,27,18,25,"resultIfOne"],[22,38,18,36],[22,40,18,38,"resultIfZero"],[22,52,18,50],[22,54,18,52],[23,4,19,4],[23,11,19,12],[23,13,19,14,"subject"],[23,20,19,21],[23,23,19,24],[23,24,19,25],[23,25,19,26],[23,28,19,29,"resultIfOne"],[23,39,19,40],[23,42,19,46,"subject"],[23,49,19,53],[23,52,19,56],[23,53,19,57],[23,56,19,61,"resultIfZero"],[23,68,19,74],[24,2,20,0],[25,2,21,0,"exports"],[25,9,21,7],[25,10,21,8,"select"],[25,16,21,14],[25,19,21,17,"select"],[25,25,21,23],[26,2,22,0],[27,0,23,0],[28,0,24,0],[29,0,25,0],[30,2,26,0],[30,11,26,9,"lessOrEqual"],[30,22,26,20,"lessOrEqual"],[30,23,26,21,"a"],[30,24,26,22],[30,26,26,24,"b"],[30,27,26,25],[30,29,26,27],[31,4,27,4],[31,11,27,13],[31,12,27,14,"a"],[31,13,27,15],[31,16,27,18],[31,17,27,19],[31,22,27,24,"b"],[31,23,27,25],[31,26,27,28],[31,27,27,29],[31,28,27,30],[31,31,27,33],[31,32,27,34],[31,37,27,40],[31,39,27,42],[31,42,27,46],[31,43,27,47],[32,2,28,0],[33,2,29,0,"exports"],[33,9,29,7],[33,10,29,8,"lessOrEqual"],[33,21,29,19],[33,24,29,22,"lessOrEqual"],[33,35,29,33],[34,2,30,0],[35,0,31,0],[36,0,32,0],[37,0,33,0],[38,0,34,0],[39,0,35,0],[40,0,36,0],[41,2,37,0],[41,11,37,9,"compare"],[41,18,37,16,"compare"],[41,19,37,17,"a"],[41,20,37,18],[41,22,37,20,"b"],[41,23,37,21],[41,25,37,23],[42,4,38,4],[42,8,38,8,"a"],[42,9,38,9],[42,10,38,10,"length"],[42,16,38,16],[42,21,38,21,"b"],[42,22,38,22],[42,23,38,23,"length"],[42,29,38,29],[42,31,38,31],[43,6,39,8],[43,13,39,15],[43,14,39,16],[44,4,40,4],[45,4,41,4],[45,8,41,8,"result"],[45,14,41,14],[45,17,41,17],[45,18,41,18],[46,4,42,4],[46,9,42,9],[46,13,42,13,"i"],[46,14,42,14],[46,17,42,17],[46,18,42,18],[46,20,42,20,"i"],[46,21,42,21],[46,24,42,24,"a"],[46,25,42,25],[46,26,42,26,"length"],[46,32,42,32],[46,34,42,34,"i"],[46,35,42,35],[46,37,42,37],[46,39,42,39],[47,6,43,8,"result"],[47,12,43,14],[47,16,43,18,"a"],[47,17,43,19],[47,18,43,20,"i"],[47,19,43,21],[47,20,43,22],[47,23,43,25,"b"],[47,24,43,26],[47,25,43,27,"i"],[47,26,43,28],[47,27,43,29],[48,4,44,4],[49,4,45,4],[49,11,45,12],[49,12,45,13],[49,15,45,18,"result"],[49,21,45,24],[49,24,45,27],[49,25,45,28],[49,30,45,34],[49,31,45,36],[50,2,46,0],[51,2,47,0,"exports"],[51,9,47,7],[51,10,47,8,"compare"],[51,17,47,15],[51,20,47,18,"compare"],[51,27,47,25],[52,2,48,0],[53,0,49,0],[54,0,50,0],[55,0,51,0],[56,0,52,0],[57,0,53,0],[58,0,54,0],[59,2,55,0],[59,11,55,9,"equal"],[59,16,55,14,"equal"],[59,17,55,15,"a"],[59,18,55,16],[59,20,55,18,"b"],[59,21,55,19],[59,23,55,21],[60,4,56,4],[60,8,56,8,"a"],[60,9,56,9],[60,10,56,10,"length"],[60,16,56,16],[60,21,56,21],[60,22,56,22],[60,26,56,26,"b"],[60,27,56,27],[60,28,56,28,"length"],[60,34,56,34],[60,39,56,39],[60,40,56,40],[60,42,56,42],[61,6,57,8],[61,13,57,15],[61,18,57,20],[62,4,58,4],[63,4,59,4],[63,11,59,11,"compare"],[63,18,59,18],[63,19,59,19,"a"],[63,20,59,20],[63,22,59,22,"b"],[63,23,59,23],[63,24,59,24],[63,29,59,29],[63,30,59,30],[64,2,60,0],[65,2,61,0,"exports"],[65,9,61,7],[65,10,61,8,"equal"],[65,15,61,13],[65,18,61,16,"equal"],[65,23,61,21],[66,0,61,22],[66,3]],"functionMap":{"names":["<global>","select","lessOrEqual","compare","equal"],"mappings":"AAA;ACiB;CDE;AEM;CFE;AGS;CHS;AIS;CJK"},"hasCjsExports":true},"type":"js/module"}]}