mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
2.3 KiB
Plaintext
1 line
2.3 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.nextTick = nextTick;\n /**\n * @name nextTick\n * @description Defer the operation to the queue for evaluation on the next tick\n */\n function nextTick(onExec, onError) {\n // While Promise.resolve().then(...) would defer to the nextTick, this\n // actually does not play as nicely in browsers like the setTimeout(...)\n // approach. So the safer, though less optimal approach is the one taken here\n setTimeout(() => {\n Promise.resolve().then(() => {\n onExec();\n }).catch(error => {\n if (onError) {\n onError(error);\n } else {\n console.error(error);\n }\n });\n }, 0);\n }\n});","lineCount":28,"map":[[7,2,5,0,"exports"],[7,9,5,0],[7,10,5,0,"nextTick"],[7,18,5,0],[7,21,5,0,"nextTick"],[7,29,5,0],[8,2,1,0],[9,0,2,0],[10,0,3,0],[11,0,4,0],[12,2,5,7],[12,11,5,16,"nextTick"],[12,19,5,24,"nextTick"],[12,20,5,25,"onExec"],[12,26,5,31],[12,28,5,33,"onError"],[12,35,5,40],[12,37,5,42],[13,4,6,4],[14,4,7,4],[15,4,8,4],[16,4,9,4,"setTimeout"],[16,14,9,14],[16,15,9,15],[16,21,9,21],[17,6,10,8,"Promise"],[17,13,10,15],[17,14,11,13,"resolve"],[17,21,11,20],[17,22,11,21],[17,23,11,22],[17,24,12,13,"then"],[17,28,12,17],[17,29,12,18],[17,35,12,24],[18,8,13,12,"onExec"],[18,14,13,18],[18,15,13,19],[18,16,13,20],[19,6,14,8],[19,7,14,9],[19,8,14,10],[19,9,15,13,"catch"],[19,14,15,18],[19,15,15,20,"error"],[19,20,15,25],[19,24,15,30],[20,8,16,12],[20,12,16,16,"onError"],[20,19,16,23],[20,21,16,25],[21,10,17,16,"onError"],[21,17,17,23],[21,18,17,24,"error"],[21,23,17,29],[21,24,17,30],[22,8,18,12],[22,9,18,13],[22,15,19,17],[23,10,20,16,"console"],[23,17,20,23],[23,18,20,24,"error"],[23,23,20,29],[23,24,20,30,"error"],[23,29,20,35],[23,30,20,36],[24,8,21,12],[25,6,22,8],[25,7,22,9],[25,8,22,10],[26,4,23,4],[26,5,23,5],[26,7,23,7],[26,8,23,8],[26,9,23,9],[27,2,24,0],[28,0,24,1],[28,3]],"functionMap":{"names":["<global>","nextTick","setTimeout$argument_0","Promise.resolve.then$argument_0","Promise.resolve.then._catch$argument_0"],"mappings":"AAA;OCI;eCI;kBCG;SDE;mBEC;SFO;KDC;CDC"},"hasCjsExports":false},"type":"js/module"}]} |