mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 07:41:01 +00:00
1 line
3.1 KiB
Plaintext
1 line
3.1 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.formatDate = formatDate;\n /** @internal */\n function zeroPad(value) {\n return value.toString().padStart(2, '0');\n }\n /**\n * @name formatDate\n * @description Formats a date in CCYY-MM-DD HH:MM:SS format\n */\n function formatDate(date) {\n const year = date.getFullYear().toString();\n const month = zeroPad(date.getMonth() + 1);\n const day = zeroPad(date.getDate());\n const hour = zeroPad(date.getHours());\n const minute = zeroPad(date.getMinutes());\n const second = zeroPad(date.getSeconds());\n return `${year}-${month}-${day} ${hour}:${minute}:${second}`;\n }\n});","lineCount":25,"map":[[7,2,9,0,"exports"],[7,9,9,0],[7,10,9,0,"formatDate"],[7,20,9,0],[7,23,9,0,"formatDate"],[7,33,9,0],[8,2,1,0],[9,2,2,0],[9,11,2,9,"zeroPad"],[9,18,2,16,"zeroPad"],[9,19,2,17,"value"],[9,24,2,22],[9,26,2,24],[10,4,3,4],[10,11,3,11,"value"],[10,16,3,16],[10,17,3,17,"toString"],[10,25,3,25],[10,26,3,26],[10,27,3,27],[10,28,3,28,"padStart"],[10,36,3,36],[10,37,3,37],[10,38,3,38],[10,40,3,40],[10,43,3,43],[10,44,3,44],[11,2,4,0],[12,2,5,0],[13,0,6,0],[14,0,7,0],[15,0,8,0],[16,2,9,7],[16,11,9,16,"formatDate"],[16,21,9,26,"formatDate"],[16,22,9,27,"date"],[16,26,9,31],[16,28,9,33],[17,4,10,4],[17,10,10,10,"year"],[17,14,10,14],[17,17,10,17,"date"],[17,21,10,21],[17,22,10,22,"getFullYear"],[17,33,10,33],[17,34,10,34],[17,35,10,35],[17,36,10,36,"toString"],[17,44,10,44],[17,45,10,45],[17,46,10,46],[18,4,11,4],[18,10,11,10,"month"],[18,15,11,15],[18,18,11,18,"zeroPad"],[18,25,11,25],[18,26,11,27,"date"],[18,30,11,31],[18,31,11,32,"getMonth"],[18,39,11,40],[18,40,11,41],[18,41,11,42],[18,44,11,45],[18,45,11,47],[18,46,11,48],[19,4,12,4],[19,10,12,10,"day"],[19,13,12,13],[19,16,12,16,"zeroPad"],[19,23,12,23],[19,24,12,24,"date"],[19,28,12,28],[19,29,12,29,"getDate"],[19,36,12,36],[19,37,12,37],[19,38,12,38],[19,39,12,39],[20,4,13,4],[20,10,13,10,"hour"],[20,14,13,14],[20,17,13,17,"zeroPad"],[20,24,13,24],[20,25,13,25,"date"],[20,29,13,29],[20,30,13,30,"getHours"],[20,38,13,38],[20,39,13,39],[20,40,13,40],[20,41,13,41],[21,4,14,4],[21,10,14,10,"minute"],[21,16,14,16],[21,19,14,19,"zeroPad"],[21,26,14,26],[21,27,14,27,"date"],[21,31,14,31],[21,32,14,32,"getMinutes"],[21,42,14,42],[21,43,14,43],[21,44,14,44],[21,45,14,45],[22,4,15,4],[22,10,15,10,"second"],[22,16,15,16],[22,19,15,19,"zeroPad"],[22,26,15,26],[22,27,15,27,"date"],[22,31,15,31],[22,32,15,32,"getSeconds"],[22,42,15,42],[22,43,15,43],[22,44,15,44],[22,45,15,45],[23,4,16,4],[23,11,16,11],[23,14,16,14,"year"],[23,18,16,18],[23,22,16,22,"month"],[23,27,16,27],[23,31,16,31,"day"],[23,34,16,34],[23,38,16,38,"hour"],[23,42,16,42],[23,46,16,46,"minute"],[23,52,16,52],[23,56,16,56,"second"],[23,62,16,62],[23,64,16,64],[24,2,17,0],[25,0,17,1],[25,3]],"functionMap":{"names":["<global>","zeroPad","formatDate"],"mappings":"AAA;ACC;CDE;OEK;CFQ"},"hasCjsExports":false},"type":"js/module"}]} |