mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
2.5 KiB
Plaintext
1 line
2.5 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 * Sets all values in the given array to zero and returns it.\n *\n * The fact that it sets bytes to zero can be relied on.\n *\n * There is no guarantee that this function makes data disappear from memory,\n * as runtime implementation can, for example, have copying garbage collector\n * that will make copies of sensitive data before we wipe it. Or that an\n * operating system will write our data to swap or sleep image. Another thing\n * is that an optimizing compiler can remove calls to this function or make it\n * no-op. There's nothing we can do with it, so we just do our best and hope\n * that everything will be okay and good will triumph over evil.\n */\n function wipe(array) {\n // Right now it's similar to array.fill(0). If it turns\n // out that runtimes optimize this call away, maybe\n // we can try something else.\n for (var i = 0; i < array.length; i++) {\n array[i] = 0;\n }\n return array;\n }\n exports.wipe = wipe;\n});","lineCount":32,"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,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,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,"wipe"],[22,15,18,13,"wipe"],[22,16,18,14,"array"],[22,21,18,19],[22,23,18,21],[23,4,19,4],[24,4,20,4],[25,4,21,4],[26,4,22,4],[26,9,22,9],[26,13,22,13,"i"],[26,14,22,14],[26,17,22,17],[26,18,22,18],[26,20,22,20,"i"],[26,21,22,21],[26,24,22,24,"array"],[26,29,22,29],[26,30,22,30,"length"],[26,36,22,36],[26,38,22,38,"i"],[26,39,22,39],[26,41,22,41],[26,43,22,43],[27,6,23,8,"array"],[27,11,23,13],[27,12,23,14,"i"],[27,13,23,15],[27,14,23,16],[27,17,23,19],[27,18,23,20],[28,4,24,4],[29,4,25,4],[29,11,25,11,"array"],[29,16,25,16],[30,2,26,0],[31,2,27,0,"exports"],[31,9,27,7],[31,10,27,8,"wipe"],[31,14,27,12],[31,17,27,15,"wipe"],[31,21,27,19],[32,0,27,20],[32,3]],"functionMap":{"names":["<global>","wipe"],"mappings":"AAA;ACiB;CDQ"},"hasCjsExports":true},"type":"js/module"}]} |