mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 11:11:01 +00:00
1 line
1.8 KiB
Plaintext
1 line
1.8 KiB
Plaintext
{"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"}]} |