mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 05:21:02 +00:00
auto-commit for d4766860-f253-4ebc-a836-6c1ca9f17d9a
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[],"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.u8aEmpty = u8aEmpty;\n /**\n * @name u8aEmpty\n * @summary Tests for a `Uint8Array` for emptyness\n * @description\n * Checks to see if the input `Uint8Array` has zero length or contains all 0 values.\n */\n function u8aEmpty(value) {\n var len = value.length | 0;\n // on smaller sizes, the byte-by-byte compare is faster than allocating\n // another object for DataView (on very large arrays the DataView is faster)\n for (var i = 0; i < len; i++) {\n if (value[i] | 0) {\n return false;\n }\n }\n return true;\n }\n});","lineCount":25,"map":[[7,2,7,0,"exports"],[7,9,7,0],[7,10,7,0,"u8aEmpty"],[7,18,7,0],[7,21,7,0,"u8aEmpty"],[7,29,7,0],[8,2,1,0],[9,0,2,0],[10,0,3,0],[11,0,4,0],[12,0,5,0],[13,0,6,0],[14,2,7,7],[14,11,7,16,"u8aEmpty"],[14,19,7,24,"u8aEmpty"],[14,20,7,25,"value"],[14,25,7,30],[14,27,7,32],[15,4,8,4],[15,8,8,10,"len"],[15,11,8,13],[15,14,8,16,"value"],[15,19,8,21],[15,20,8,22,"length"],[15,26,8,28],[15,29,8,31],[15,30,8,32],[16,4,9,4],[17,4,10,4],[18,4,11,4],[18,9,11,9],[18,13,11,13,"i"],[18,14,11,14],[18,17,11,17],[18,18,11,18],[18,20,11,20,"i"],[18,21,11,21],[18,24,11,24,"len"],[18,27,11,27],[18,29,11,29,"i"],[18,30,11,30],[18,32,11,32],[18,34,11,34],[19,6,12,8],[19,10,12,12,"value"],[19,15,12,17],[19,16,12,18,"i"],[19,17,12,19],[19,18,12,20],[19,21,12,23],[19,22,12,24],[19,24,12,26],[20,8,13,12],[20,15,13,19],[20,20,13,24],[21,6,14,8],[22,4,15,4],[23,4,16,4],[23,11,16,11],[23,15,16,15],[24,2,17,0],[25,0,17,1],[25,3]],"functionMap":{"names":["<global>","u8aEmpty"],"mappings":"AAA;OCM;CDU"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[],"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.base64Decode = base64Decode;\n var CHR = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n var map = new Array(256);\n for (var i = 0, count = CHR.length; i < count; i++) {\n map[CHR.charCodeAt(i)] = i;\n }\n /**\n * @name base64Decode\n * @description\n * A base64 decoding function that operates in all environments. Unlike decoding\n * from Buffer (Node.js only) or atob (browser-only) this implementation is\n * slightly slower, but it is platform independent.\n *\n * For our usage, since we have access to the static final size, so we decode\n * to a specified output buffer. This also means we have applied a number of\n * optimizations based on this - checking output position instead of chars.\n */\n function base64Decode(data, out) {\n var byte = 0;\n var bits = 0;\n var pos = -1;\n for (var _i = 0, last = out.length - 1; pos !== last; _i++) {\n // each character represents 6 bits\n byte = byte << 6 | map[data.charCodeAt(_i)];\n // each byte needs to contain 8 bits\n if ((bits += 6) >= 8) {\n out[++pos] = byte >>> (bits -= 8) & 0xff;\n }\n }\n return out;\n }\n});","lineCount":38,"map":[[7,2,17,0,"exports"],[7,9,17,0],[7,10,17,0,"base64Decode"],[7,22,17,0],[7,25,17,0,"base64Decode"],[7,37,17,0],[8,2,1,0],[8,6,1,6,"CHR"],[8,9,1,9],[8,12,1,12],[8,78,1,78],[9,2,2,0],[9,6,2,6,"map"],[9,9,2,9],[9,12,2,12],[9,16,2,16,"Array"],[9,21,2,21],[9,22,2,22],[9,25,2,25],[9,26,2,26],[10,2,3,0],[10,7,3,5],[10,11,3,9,"i"],[10,12,3,10],[10,15,3,13],[10,16,3,14],[10,18,3,16,"count"],[10,23,3,21],[10,26,3,24,"CHR"],[10,29,3,27],[10,30,3,28,"length"],[10,36,3,34],[10,38,3,36,"i"],[10,39,3,37],[10,42,3,40,"count"],[10,47,3,45],[10,49,3,47,"i"],[10,50,3,48],[10,52,3,50],[10,54,3,52],[11,4,4,4,"map"],[11,7,4,7],[11,8,4,8,"CHR"],[11,11,4,11],[11,12,4,12,"charCodeAt"],[11,22,4,22],[11,23,4,23,"i"],[11,24,4,24],[11,25,4,25],[11,26,4,26],[11,29,4,29,"i"],[11,30,4,30],[12,2,5,0],[13,2,6,0],[14,0,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,2,17,7],[24,11,17,16,"base64Decode"],[24,23,17,28,"base64Decode"],[24,24,17,29,"data"],[24,28,17,33],[24,30,17,35,"out"],[24,33,17,38],[24,35,17,40],[25,4,18,4],[25,8,18,8,"byte"],[25,12,18,12],[25,15,18,15],[25,16,18,16],[26,4,19,4],[26,8,19,8,"bits"],[26,12,19,12],[26,15,19,15],[26,16,19,16],[27,4,20,4],[27,8,20,8,"pos"],[27,11,20,11],[27,14,20,14],[27,15,20,15],[27,16,20,16],[28,4,21,4],[28,9,21,9],[28,13,21,13,"i"],[28,15,21,14],[28,18,21,17],[28,19,21,18],[28,21,21,20,"last"],[28,25,21,24],[28,28,21,27,"out"],[28,31,21,30],[28,32,21,31,"length"],[28,38,21,37],[28,41,21,40],[28,42,21,41],[28,44,21,43,"pos"],[28,47,21,46],[28,52,21,51,"last"],[28,56,21,55],[28,58,21,57,"i"],[28,60,21,58],[28,62,21,60],[28,64,21,62],[29,6,22,8],[30,6,23,8,"byte"],[30,10,23,12],[30,13,23,16,"byte"],[30,17,23,20],[30,21,23,24],[30,22,23,25],[30,25,23,29,"map"],[30,28,23,32],[30,29,23,33,"data"],[30,33,23,37],[30,34,23,38,"charCodeAt"],[30,44,23,48],[30,45,23,49,"i"],[30,47,23,50],[30,48,23,51],[30,49,23,52],[31,6,24,8],[32,6,25,8],[32,10,25,12],[32,11,25,13,"bits"],[32,15,25,17],[32,19,25,21],[32,20,25,22],[32,25,25,27],[32,26,25,28],[32,28,25,30],[33,8,26,12,"out"],[33,11,26,15],[33,12,26,16],[33,14,26,18,"pos"],[33,17,26,21],[33,18,26,22],[33,21,26,26,"byte"],[33,25,26,30],[33,31,26,36,"bits"],[33,35,26,40],[33,39,26,44],[33,40,26,45],[33,41,26,46],[33,44,26,50],[33,48,26,54],[34,6,27,8],[35,4,28,4],[36,4,29,4],[36,11,29,11,"out"],[36,14,29,14],[37,2,30,0],[38,0,30,1],[38,3]],"functionMap":{"names":["<global>","base64Decode"],"mappings":"AAA;OCgB;CDa"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user