auto-commit for 4c084561-1938-4dad-bd1d-79fbb858f837

This commit is contained in:
emergent-agent-e1
2025-11-08 10:06:45 +00:00
parent b54a3f8321
commit e576e8b1ef
2779 changed files with 2779 additions and 0 deletions
@@ -0,0 +1 @@
{"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"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"../scheduler/async","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":14,"index":119},"end":{"line":4,"column":43,"index":148}}],"key":"DwsQXSm/xtyztPccmczjezyRPzQ=","exportNames":["*"],"imports":1}},{"name":"./audit","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":14,"index":164},"end":{"line":5,"column":32,"index":182}}],"key":"HRUyojWvTwc6Rac2TbcQWz3aX9k=","exportNames":["*"],"imports":1}},{"name":"../observable/timer","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":14,"index":198},"end":{"line":6,"column":44,"index":228}}],"key":"GS4xWdSOWUF/4jN7wbbo//xg8QE=","exportNames":["*"],"imports":1}}],"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.auditTime = void 0;\n var async_1 = require(_dependencyMap[0], \"../scheduler/async\");\n var audit_1 = require(_dependencyMap[1], \"./audit\");\n var timer_1 = require(_dependencyMap[2], \"../observable/timer\");\n function auditTime(duration, scheduler) {\n if (scheduler === void 0) {\n scheduler = async_1.asyncScheduler;\n }\n return audit_1.audit(function () {\n return timer_1.timer(duration, scheduler);\n });\n }\n exports.auditTime = auditTime;\n});","lineCount":20,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"auditTime"],[7,19,3,17],[7,22,3,20],[7,27,3,25],[7,28,3,26],[8,2,4,0],[8,6,4,4,"async_1"],[8,13,4,11],[8,16,4,14,"require"],[8,23,4,21],[8,24,4,21,"_dependencyMap"],[8,38,4,21],[8,63,4,42],[8,64,4,43],[9,2,5,0],[9,6,5,4,"audit_1"],[9,13,5,11],[9,16,5,14,"require"],[9,23,5,21],[9,24,5,21,"_dependencyMap"],[9,38,5,21],[9,52,5,31],[9,53,5,32],[10,2,6,0],[10,6,6,4,"timer_1"],[10,13,6,11],[10,16,6,14,"require"],[10,23,6,21],[10,24,6,21,"_dependencyMap"],[10,38,6,21],[10,64,6,43],[10,65,6,44],[11,2,7,0],[11,11,7,9,"auditTime"],[11,20,7,18,"auditTime"],[11,21,7,19,"duration"],[11,29,7,27],[11,31,7,29,"scheduler"],[11,40,7,38],[11,42,7,40],[12,4,8,4],[12,8,8,8,"scheduler"],[12,17,8,17],[12,22,8,22],[12,27,8,27],[12,28,8,28],[12,30,8,30],[13,6,8,32,"scheduler"],[13,15,8,41],[13,18,8,44,"async_1"],[13,25,8,51],[13,26,8,52,"asyncScheduler"],[13,40,8,66],[14,4,8,68],[15,4,9,4],[15,11,9,11,"audit_1"],[15,18,9,18],[15,19,9,19,"audit"],[15,24,9,24],[15,25,9,25],[15,37,9,37],[16,6,9,39],[16,13,9,46,"timer_1"],[16,20,9,53],[16,21,9,54,"timer"],[16,26,9,59],[16,27,9,60,"duration"],[16,35,9,68],[16,37,9,70,"scheduler"],[16,46,9,79],[16,47,9,80],[17,4,9,82],[17,5,9,83],[17,6,9,84],[18,2,10,0],[19,2,11,0,"exports"],[19,9,11,7],[19,10,11,8,"auditTime"],[19,19,11,17],[19,22,11,20,"auditTime"],[19,31,11,29],[20,0,11,30],[20,3]],"functionMap":{"names":["<global>","auditTime","audit_1.audit$argument_0"],"mappings":"AAA;ACM;yBCE,0DD;CDC"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -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.formatDecimal = formatDecimal;\n var NUMBER_REGEX = new RegExp('(\\\\d+?)(?=(\\\\d{3})+(?!\\\\d)|$)', 'g');\n /**\n * @name formatDecimal\n * @description Formats a number into string format with thousand separators\n */\n function formatDecimal(value) {\n var separator = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ',';\n // We can do this by adjusting the regx, however for the sake of clarity\n // we rather strip and re-add the negative sign in the output\n var isNegative = value[0].startsWith('-');\n var matched = isNegative ? value.substring(1).match(NUMBER_REGEX) : value.match(NUMBER_REGEX);\n return matched ? `${isNegative ? '-' : ''}${matched.join(separator)}` : value;\n }\n});","lineCount":21,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"formatDecimal"],[7,23,3,21],[7,26,3,24,"formatDecimal"],[7,39,3,37],[8,2,4,0],[8,6,4,6,"NUMBER_REGEX"],[8,18,4,18],[8,21,4,21],[8,25,4,25,"RegExp"],[8,31,4,31],[8,32,4,32],[8,63,4,63],[8,65,4,65],[8,68,4,68],[8,69,4,69],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,2,9,0],[13,11,9,9,"formatDecimal"],[13,24,9,22,"formatDecimal"],[13,25,9,23,"value"],[13,30,9,28],[13,32,9,47],[14,4,9,47],[14,8,9,30,"separator"],[14,17,9,39],[14,20,9,39,"arguments"],[14,29,9,39],[14,30,9,39,"length"],[14,36,9,39],[14,44,9,39,"arguments"],[14,53,9,39],[14,61,9,39,"undefined"],[14,70,9,39],[14,73,9,39,"arguments"],[14,82,9,39],[14,88,9,42],[14,91,9,45],[15,4,10,4],[16,4,11,4],[17,4,12,4],[17,8,12,10,"isNegative"],[17,18,12,20],[17,21,12,23,"value"],[17,26,12,28],[17,27,12,29],[17,28,12,30],[17,29,12,31],[17,30,12,32,"startsWith"],[17,40,12,42],[17,41,12,43],[17,44,12,46],[17,45,12,47],[18,4,13,4],[18,8,13,10,"matched"],[18,15,13,17],[18,18,13,20,"isNegative"],[18,28,13,30],[18,31,14,10,"value"],[18,36,14,15],[18,37,14,16,"substring"],[18,46,14,25],[18,47,14,26],[18,48,14,27],[18,49,14,28],[18,50,14,29,"match"],[18,55,14,34],[18,56,14,35,"NUMBER_REGEX"],[18,68,14,47],[18,69,14,48],[18,72,15,10,"value"],[18,77,15,15],[18,78,15,16,"match"],[18,83,15,21],[18,84,15,22,"NUMBER_REGEX"],[18,96,15,34],[18,97,15,35],[19,4,16,4],[19,11,16,11,"matched"],[19,18,16,18],[19,21,17,10],[19,24,17,13,"isNegative"],[19,34,17,23],[19,37,17,26],[19,40,17,29],[19,43,17,32],[19,45,17,34],[19,48,17,37,"matched"],[19,55,17,44],[19,56,17,45,"join"],[19,60,17,49],[19,61,17,50,"separator"],[19,70,17,59],[19,71,17,60],[19,73,17,62],[19,76,18,10,"value"],[19,81,18,15],[20,2,19,0],[21,0,19,1],[21,3]],"functionMap":{"names":["<global>","formatDecimal"],"mappings":"AAA;ACQ;CDU"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long