auto-commit for 49610908-ca1e-46b7-8671-ad75c85b7aa2

This commit is contained in:
emergent-agent-e1
2025-11-08 11:08:44 +00:00
parent 0373b73c4f
commit 32d0877be4
340 changed files with 340 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[{"name":"./packageDetect.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":28,"index":28}}],"key":"+Ji6Hptm7ZPX4vBx4NKVCGXQRy0=","exportNames":["*"],"imports":1}},{"name":"./bundle.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":29},"end":{"line":2,"column":28,"index":57}}],"key":"PWR1nJjMkx2QW4pasm5NrmWPUXQ=","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 require(_dependencyMap[0], \"./packageDetect.js\");\n var _bundleJs = require(_dependencyMap[1], \"./bundle.js\");\n Object.keys(_bundleJs).forEach(function (k) {\n if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) {\n Object.defineProperty(exports, k, {\n enumerable: true,\n get: function () {\n return _bundleJs[k];\n }\n });\n }\n });\n});","lineCount":19,"map":[[7,2,1,0,"require"],[7,9,1,0],[7,10,1,0,"_dependencyMap"],[7,24,1,0],[8,2,2,0],[8,6,2,0,"_bundleJs"],[8,15,2,0],[8,18,2,0,"require"],[8,25,2,0],[8,26,2,0,"_dependencyMap"],[8,40,2,0],[9,2,2,0,"Object"],[9,8,2,0],[9,9,2,0,"keys"],[9,13,2,0],[9,14,2,0,"_bundleJs"],[9,23,2,0],[9,25,2,0,"forEach"],[9,32,2,0],[9,43,2,0,"k"],[9,44,2,0],[10,4,2,0],[10,8,2,0,"k"],[10,9,2,0],[10,28,2,0,"Object"],[10,34,2,0],[10,35,2,0,"prototype"],[10,44,2,0],[10,45,2,0,"hasOwnProperty"],[10,59,2,0],[10,60,2,0,"call"],[10,64,2,0],[10,65,2,0,"exports"],[10,72,2,0],[10,74,2,0,"k"],[10,75,2,0],[11,6,2,0,"Object"],[11,12,2,0],[11,13,2,0,"defineProperty"],[11,27,2,0],[11,28,2,0,"exports"],[11,35,2,0],[11,37,2,0,"k"],[11,38,2,0],[12,8,2,0,"enumerable"],[12,18,2,0],[13,8,2,0,"get"],[13,11,2,0],[13,22,2,0,"get"],[13,23,2,0],[14,10,2,0],[14,17,2,0,"_bundleJs"],[14,26,2,0],[14,27,2,0,"k"],[14,28,2,0],[15,8,2,0],[16,6,2,0],[17,4,2,0],[18,2,2,0],[19,0,2,28],[19,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
@@ -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.u8aToFloat = u8aToFloat;\n /**\n * @name u8aToFloat\n * @description Converts a Uint8Array value into the float (either 32 or 64-bit)\n * representation.\n */\n function u8aToFloat(value, {\n bitLength = 32,\n isLe = true\n } = {}) {\n if (bitLength !== 32 && bitLength !== 64) {\n throw new Error('Invalid bitLength provided, expected 32 or 64');\n } else if (value.length < bitLength / 8) {\n throw new Error(`Invalid input buffer provided, expected at least ${bitLength / 8} bytes, found ${value.length}`);\n }\n const dv = new DataView(value.buffer, value.byteOffset);\n return bitLength === 32 ? dv.getFloat32(0, isLe) : dv.getFloat64(0, isLe);\n }\n});","lineCount":25,"map":[[7,2,6,0,"exports"],[7,9,6,0],[7,10,6,0,"u8aToFloat"],[7,20,6,0],[7,23,6,0,"u8aToFloat"],[7,33,6,0],[8,2,1,0],[9,0,2,0],[10,0,3,0],[11,0,4,0],[12,0,5,0],[13,2,6,7],[13,11,6,16,"u8aToFloat"],[13,21,6,26,"u8aToFloat"],[13,22,6,27,"value"],[13,27,6,32],[13,29,6,34],[14,4,6,36,"bitLength"],[14,13,6,45],[14,16,6,48],[14,18,6,50],[15,4,6,52,"isLe"],[15,8,6,56],[15,11,6,59],[16,2,6,64],[16,3,6,65],[16,6,6,68],[16,7,6,69],[16,8,6,70],[16,10,6,72],[17,4,7,4],[17,8,7,8,"bitLength"],[17,17,7,17],[17,22,7,22],[17,24,7,24],[17,28,7,28,"bitLength"],[17,37,7,37],[17,42,7,42],[17,44,7,44],[17,46,7,46],[18,6,8,8],[18,12,8,14],[18,16,8,18,"Error"],[18,21,8,23],[18,22,8,24],[18,69,8,71],[18,70,8,72],[19,4,9,4],[19,5,9,5],[19,11,10,9],[19,15,10,13,"value"],[19,20,10,18],[19,21,10,19,"length"],[19,27,10,25],[19,30,10,29,"bitLength"],[19,39,10,38],[19,42,10,41],[19,43,10,43],[19,45,10,45],[20,6,11,8],[20,12,11,14],[20,16,11,18,"Error"],[20,21,11,23],[20,22,11,24],[20,74,11,76,"bitLength"],[20,83,11,85],[20,86,11,88],[20,87,11,89],[20,104,11,106,"value"],[20,109,11,111],[20,110,11,112,"length"],[20,116,11,118],[20,118,11,120],[20,119,11,121],[21,4,12,4],[22,4,13,4],[22,10,13,10,"dv"],[22,12,13,12],[22,15,13,15],[22,19,13,19,"DataView"],[22,27,13,27],[22,28,13,28,"value"],[22,33,13,33],[22,34,13,34,"buffer"],[22,40,13,40],[22,42,13,42,"value"],[22,47,13,47],[22,48,13,48,"byteOffset"],[22,58,13,58],[22,59,13,59],[23,4,14,4],[23,11,14,11,"bitLength"],[23,20,14,20],[23,25,14,25],[23,27,14,27],[23,30,15,10,"dv"],[23,32,15,12],[23,33,15,13,"getFloat32"],[23,43,15,23],[23,44,15,24],[23,45,15,25],[23,47,15,27,"isLe"],[23,51,15,31],[23,52,15,32],[23,55,16,10,"dv"],[23,57,16,12],[23,58,16,13,"getFloat64"],[23,68,16,23],[23,69,16,24],[23,70,16,25],[23,72,16,27,"isLe"],[23,76,16,31],[23,77,16,32],[24,2,17,0],[25,0,17,1],[25,3]],"functionMap":{"names":["<global>","u8aToFloat"],"mappings":"AAA;OCK;CDW"},"hasCjsExports":false},"type":"js/module"}]}