auto-commit for 8283eed7-b15a-4df4-b06f-096ffafb3ec7

This commit is contained in:
emergent-agent-e1
2025-11-09 08:09:57 +00:00
parent 3907c8888c
commit e87a95958b
232 changed files with 232 additions and 0 deletions
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 /**\n * This method returns `undefined`.\n *\n * @static\n * @memberOf _\n * @since 2.3.0\n * @category Util\n * @example\n *\n * _.times(2, _.noop);\n * // => [undefined, undefined]\n */\n function noop() {\n // No operation performed.\n }\n module.exports = noop;\n});","lineCount":18,"map":[[2,2,1,0],[3,0,2,0],[4,0,3,0],[5,0,4,0],[6,0,5,0],[7,0,6,0],[8,0,7,0],[9,0,8,0],[10,0,9,0],[11,0,10,0],[12,0,11,0],[13,0,12,0],[14,2,13,0],[14,11,13,9,"noop"],[14,15,13,13,"noop"],[14,16,13,13],[14,18,13,16],[15,4,14,2],[16,2,14,2],[17,2,17,0,"module"],[17,8,17,6],[17,9,17,7,"exports"],[17,16,17,14],[17,19,17,17,"noop"],[17,23,17,21],[18,0,17,22],[18,3]],"functionMap":{"names":["<global>","noop"],"mappings":"AAA;ACY;CDE"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./isArrayLike","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":18,"index":18},"end":{"line":1,"column":42,"index":42}}],"key":"uFBhDXuXNSDFu0t5DF80nwq22rc=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var isArrayLike = require(_dependencyMap[0], \"./isArrayLike\");\n\n /**\n * Creates a `baseEach` or `baseEachRight` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\n function createBaseEach(eachFunc, fromRight) {\n return function (collection, iteratee) {\n if (collection == null) {\n return collection;\n }\n if (!isArrayLike(collection)) {\n return eachFunc(collection, iteratee);\n }\n var length = collection.length,\n index = fromRight ? length : -1,\n iterable = Object(collection);\n while (fromRight ? index-- : ++index < length) {\n if (iteratee(iterable[index], index, iterable) === false) {\n break;\n }\n }\n return collection;\n };\n }\n module.exports = createBaseEach;\n});","lineCount":32,"map":[[2,2,1,0],[2,6,1,4,"isArrayLike"],[2,17,1,15],[2,20,1,18,"require"],[2,27,1,25],[2,28,1,25,"_dependencyMap"],[2,42,1,25],[2,62,1,41],[2,63,1,42],[4,2,3,0],[5,0,4,0],[6,0,5,0],[7,0,6,0],[8,0,7,0],[9,0,8,0],[10,0,9,0],[11,0,10,0],[12,2,11,0],[12,11,11,9,"createBaseEach"],[12,25,11,23,"createBaseEach"],[12,26,11,24,"eachFunc"],[12,34,11,32],[12,36,11,34,"fromRight"],[12,45,11,43],[12,47,11,45],[13,4,12,2],[13,11,12,9],[13,21,12,18,"collection"],[13,31,12,28],[13,33,12,30,"iteratee"],[13,41,12,38],[13,43,12,40],[14,6,13,4],[14,10,13,8,"collection"],[14,20,13,18],[14,24,13,22],[14,28,13,26],[14,30,13,28],[15,8,14,6],[15,15,14,13,"collection"],[15,25,14,23],[16,6,15,4],[17,6,16,4],[17,10,16,8],[17,11,16,9,"isArrayLike"],[17,22,16,20],[17,23,16,21,"collection"],[17,33,16,31],[17,34,16,32],[17,36,16,34],[18,8,17,6],[18,15,17,13,"eachFunc"],[18,23,17,21],[18,24,17,22,"collection"],[18,34,17,32],[18,36,17,34,"iteratee"],[18,44,17,42],[18,45,17,43],[19,6,18,4],[20,6,19,4],[20,10,19,8,"length"],[20,16,19,14],[20,19,19,17,"collection"],[20,29,19,27],[20,30,19,28,"length"],[20,36,19,34],[21,8,20,8,"index"],[21,13,20,13],[21,16,20,16,"fromRight"],[21,25,20,25],[21,28,20,28,"length"],[21,34,20,34],[21,37,20,37],[21,38,20,38],[21,39,20,39],[22,8,21,8,"iterable"],[22,16,21,16],[22,19,21,19,"Object"],[22,25,21,25],[22,26,21,26,"collection"],[22,36,21,36],[22,37,21,37],[23,6,23,4],[23,13,23,12,"fromRight"],[23,22,23,21],[23,25,23,24,"index"],[23,30,23,29],[23,32,23,31],[23,35,23,34],[23,37,23,36,"index"],[23,42,23,41],[23,45,23,44,"length"],[23,51,23,50],[23,53,23,53],[24,8,24,6],[24,12,24,10,"iteratee"],[24,20,24,18],[24,21,24,19,"iterable"],[24,29,24,27],[24,30,24,28,"index"],[24,35,24,33],[24,36,24,34],[24,38,24,36,"index"],[24,43,24,41],[24,45,24,43,"iterable"],[24,53,24,51],[24,54,24,52],[24,59,24,57],[24,64,24,62],[24,66,24,64],[25,10,25,8],[26,8,26,6],[27,6,27,4],[28,6,28,4],[28,13,28,11,"collection"],[28,23,28,21],[29,4,29,2],[29,5,29,3],[30,2,30,0],[31,2,32,0,"module"],[31,8,32,6],[31,9,32,7,"exports"],[31,16,32,14],[31,19,32,17,"createBaseEach"],[31,33,32,31],[32,0,32,32],[32,3]],"functionMap":{"names":["<global>","createBaseEach","<anonymous>"],"mappings":"AAA;ACU;SCC;GDiB;CDC"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./_isPrototype","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":18,"index":18},"end":{"line":1,"column":43,"index":43}}],"key":"vBiRDUMqg88JHs1hByVxS5nSkEc=","exportNames":["*"],"imports":1}},{"name":"./_nativeKeys","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":2,"column":17,"index":62},"end":{"line":2,"column":41,"index":86}}],"key":"KVidmBbgzX9Apq7dBEokY2kj1rE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var isPrototype = require(_dependencyMap[0], \"./_isPrototype\"),\n nativeKeys = require(_dependencyMap[1], \"./_nativeKeys\");\n\n /** Used for built-in method references. */\n var objectProto = Object.prototype;\n\n /** Used to check objects for own properties. */\n var hasOwnProperty = objectProto.hasOwnProperty;\n\n /**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\n function baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n }\n module.exports = baseKeys;\n});","lineCount":31,"map":[[2,2,1,0],[2,6,1,4,"isPrototype"],[2,17,1,15],[2,20,1,18,"require"],[2,27,1,25],[2,28,1,25,"_dependencyMap"],[2,42,1,25],[2,63,1,42],[2,64,1,43],[3,4,2,4,"nativeKeys"],[3,14,2,14],[3,17,2,17,"require"],[3,24,2,24],[3,25,2,24,"_dependencyMap"],[3,39,2,24],[3,59,2,40],[3,60,2,41],[5,2,4,0],[6,2,5,0],[6,6,5,4,"objectProto"],[6,17,5,15],[6,20,5,18,"Object"],[6,26,5,24],[6,27,5,25,"prototype"],[6,36,5,34],[8,2,7,0],[9,2,8,0],[9,6,8,4,"hasOwnProperty"],[9,20,8,18],[9,23,8,21,"objectProto"],[9,34,8,32],[9,35,8,33,"hasOwnProperty"],[9,49,8,47],[11,2,10,0],[12,0,11,0],[13,0,12,0],[14,0,13,0],[15,0,14,0],[16,0,15,0],[17,0,16,0],[18,2,17,0],[18,11,17,9,"baseKeys"],[18,19,17,17,"baseKeys"],[18,20,17,18,"object"],[18,26,17,24],[18,28,17,26],[19,4,18,2],[19,8,18,6],[19,9,18,7,"isPrototype"],[19,20,18,18],[19,21,18,19,"object"],[19,27,18,25],[19,28,18,26],[19,30,18,28],[20,6,19,4],[20,13,19,11,"nativeKeys"],[20,23,19,21],[20,24,19,22,"object"],[20,30,19,28],[20,31,19,29],[21,4,20,2],[22,4,21,2],[22,8,21,6,"result"],[22,14,21,12],[22,17,21,15],[22,19,21,17],[23,4,22,2],[23,9,22,7],[23,13,22,11,"key"],[23,16,22,14],[23,20,22,18,"Object"],[23,26,22,24],[23,27,22,25,"object"],[23,33,22,31],[23,34,22,32],[23,36,22,34],[24,6,23,4],[24,10,23,8,"hasOwnProperty"],[24,24,23,22],[24,25,23,23,"call"],[24,29,23,27],[24,30,23,28,"object"],[24,36,23,34],[24,38,23,36,"key"],[24,41,23,39],[24,42,23,40],[24,46,23,44,"key"],[24,49,23,47],[24,53,23,51],[24,66,23,64],[24,68,23,66],[25,8,24,6,"result"],[25,14,24,12],[25,15,24,13,"push"],[25,19,24,17],[25,20,24,18,"key"],[25,23,24,21],[25,24,24,22],[26,6,25,4],[27,4,26,2],[28,4,27,2],[28,11,27,9,"result"],[28,17,27,15],[29,2,28,0],[30,2,30,0,"module"],[30,8,30,6],[30,9,30,7,"exports"],[30,16,30,14],[30,19,30,17,"baseKeys"],[30,27,30,25],[31,0,30,26],[31,3]],"functionMap":{"names":["<global>","baseKeys"],"mappings":"AAA;ACgB;CDW"},"hasCjsExports":true},"type":"js/module"}]}