auto-commit for f8470fe1-4ce5-4123-a3e6-0b710ab3390a

This commit is contained in:
emergent-agent-e1
2025-11-08 07:19:17 +00:00
parent 92245c9124
commit dd2549e54a
1911 changed files with 1911 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 Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.arrayRange = arrayRange;\n /**\n * @name arrayRange\n * @summary Returns a range of numbers ith the size and the specified offset\n * @description\n * Returns a new array of numbers with the specific size. Optionally, when `startAt`, is provided, it generates the range to start at a specific value.\n * @example\n * <BR>\n *\n * ```javascript\n * import { arrayRange } from '@polkadot/util';\n *\n * arrayRange(5); // [0, 1, 2, 3, 4]\n * arrayRange(3, 5); // [5, 6, 7]\n * ```\n */\n function arrayRange(size, startAt = 0) {\n if (size <= 0) {\n throw new Error('Expected non-zero, positive number as a range size');\n }\n const result = new Array(size);\n for (let i = 0; i < size; i++) {\n result[i] = i + startAt;\n }\n return result;\n }\n});","lineCount":33,"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,"arrayRange"],[7,20,3,18],[7,23,3,21,"arrayRange"],[7,33,3,31],[8,2,4,0],[9,0,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,0,18,0],[23,2,19,0],[23,11,19,9,"arrayRange"],[23,21,19,19,"arrayRange"],[23,22,19,20,"size"],[23,26,19,24],[23,28,19,26,"startAt"],[23,35,19,33],[23,38,19,36],[23,39,19,37],[23,41,19,39],[24,4,20,4],[24,8,20,8,"size"],[24,12,20,12],[24,16,20,16],[24,17,20,17],[24,19,20,19],[25,6,21,8],[25,12,21,14],[25,16,21,18,"Error"],[25,21,21,23],[25,22,21,24],[25,74,21,76],[25,75,21,77],[26,4,22,4],[27,4,23,4],[27,10,23,10,"result"],[27,16,23,16],[27,19,23,19],[27,23,23,23,"Array"],[27,28,23,28],[27,29,23,29,"size"],[27,33,23,33],[27,34,23,34],[28,4,24,4],[28,9,24,9],[28,13,24,13,"i"],[28,14,24,14],[28,17,24,17],[28,18,24,18],[28,20,24,20,"i"],[28,21,24,21],[28,24,24,24,"size"],[28,28,24,28],[28,30,24,30,"i"],[28,31,24,31],[28,33,24,33],[28,35,24,35],[29,6,25,8,"result"],[29,12,25,14],[29,13,25,15,"i"],[29,14,25,16],[29,15,25,17],[29,18,25,20,"i"],[29,19,25,21],[29,22,25,24,"startAt"],[29,29,25,31],[30,4,26,4],[31,4,27,4],[31,11,27,11,"result"],[31,17,27,17],[32,2,28,0],[33,0,28,1],[33,3]],"functionMap":{"names":["<global>","arrayRange"],"mappings":"AAA;ACkB;CDS"},"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
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