auto-commit for fa23f3bb-adf7-48d2-ba5f-304a1e01a0d9

This commit is contained in:
emergent-agent-e1
2025-11-09 07:57:58 +00:00
parent 85a33cb7f3
commit ff0ab63515
235 changed files with 235 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n /**\n * Gets the value at `key`, unless `key` is \"__proto__\" or \"constructor\".\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\n function safeGet(object, key) {\n if (key === 'constructor' && typeof object[key] === 'function') {\n return;\n }\n if (key == '__proto__') {\n return;\n }\n return object[key];\n }\n module.exports = safeGet;\n});","lineCount":20,"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,2,9,0],[10,11,9,9,"safeGet"],[10,18,9,16,"safeGet"],[10,19,9,17,"object"],[10,25,9,23],[10,27,9,25,"key"],[10,30,9,28],[10,32,9,30],[11,4,10,2],[11,8,10,6,"key"],[11,11,10,9],[11,16,10,14],[11,29,10,27],[11,33,10,31],[11,40,10,38,"object"],[11,46,10,44],[11,47,10,45,"key"],[11,50,10,48],[11,51,10,49],[11,56,10,54],[11,66,10,64],[11,68,10,66],[12,6,11,4],[13,4,12,2],[14,4,14,2],[14,8,14,6,"key"],[14,11,14,9],[14,15,14,13],[14,26,14,24],[14,28,14,26],[15,6,15,4],[16,4,16,2],[17,4,18,2],[17,11,18,9,"object"],[17,17,18,15],[17,18,18,16,"key"],[17,21,18,19],[17,22,18,20],[18,2,19,0],[19,2,21,0,"module"],[19,8,21,6],[19,9,21,7,"exports"],[19,16,21,14],[19,19,21,17,"safeGet"],[19,26,21,24],[20,0,21,25],[20,3]],"functionMap":{"names":["<global>","safeGet"],"mappings":"AAA;ACQ;CDU"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./_baseMatches","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":18,"index":18},"end":{"line":1,"column":43,"index":43}}],"key":"a85KRrF9I7Ih6VQnGSNPWKEPVx4=","exportNames":["*"],"imports":1}},{"name":"./_baseMatchesProperty","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":2,"column":26,"index":71},"end":{"line":2,"column":59,"index":104}}],"key":"bQWi8wmBGwZJIgrhwAPF4KGCOus=","exportNames":["*"],"imports":1}},{"name":"./identity","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":15,"index":121},"end":{"line":3,"column":36,"index":142}}],"key":"UhqGrQQzLOVLw4KKw6clyFrs2yY=","exportNames":["*"],"imports":1}},{"name":"./isArray","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":14,"index":158},"end":{"line":4,"column":34,"index":178}}],"key":"cpLl3Nq+ZgzwmgESYQ2NCH3CqEk=","exportNames":["*"],"imports":1}},{"name":"./property","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":195},"end":{"line":5,"column":36,"index":216}}],"key":"r4oUf6n5H00+CEBARm5xtxsKxvA=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var baseMatches = require(_dependencyMap[0], \"./_baseMatches\"),\n baseMatchesProperty = require(_dependencyMap[1], \"./_baseMatchesProperty\"),\n identity = require(_dependencyMap[2], \"./identity\"),\n isArray = require(_dependencyMap[3], \"./isArray\"),\n property = require(_dependencyMap[4], \"./property\");\n\n /**\n * The base implementation of `_.iteratee`.\n *\n * @private\n * @param {*} [value=_.identity] The value to convert to an iteratee.\n * @returns {Function} Returns the iteratee.\n */\n function baseIteratee(value) {\n // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\n // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\n if (typeof value == 'function') {\n return value;\n }\n if (value == null) {\n return identity;\n }\n if (typeof value == 'object') {\n return isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value);\n }\n return property(value);\n }\n module.exports = baseIteratee;\n});","lineCount":30,"map":[[2,2,1,0],[2,6,1,4,"baseMatches"],[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,"baseMatchesProperty"],[3,23,2,23],[3,26,2,26,"require"],[3,33,2,33],[3,34,2,33,"_dependencyMap"],[3,48,2,33],[3,77,2,58],[3,78,2,59],[4,4,3,4,"identity"],[4,12,3,12],[4,15,3,15,"require"],[4,22,3,22],[4,23,3,22,"_dependencyMap"],[4,37,3,22],[4,54,3,35],[4,55,3,36],[5,4,4,4,"isArray"],[5,11,4,11],[5,14,4,14,"require"],[5,21,4,21],[5,22,4,21,"_dependencyMap"],[5,36,4,21],[5,52,4,33],[5,53,4,34],[6,4,5,4,"property"],[6,12,5,12],[6,15,5,15,"require"],[6,22,5,22],[6,23,5,22,"_dependencyMap"],[6,37,5,22],[6,54,5,35],[6,55,5,36],[8,2,7,0],[9,0,8,0],[10,0,9,0],[11,0,10,0],[12,0,11,0],[13,0,12,0],[14,0,13,0],[15,2,14,0],[15,11,14,9,"baseIteratee"],[15,23,14,21,"baseIteratee"],[15,24,14,22,"value"],[15,29,14,27],[15,31,14,29],[16,4,15,2],[17,4,16,2],[18,4,17,2],[18,8,17,6],[18,15,17,13,"value"],[18,20,17,18],[18,24,17,22],[18,34,17,32],[18,36,17,34],[19,6,18,4],[19,13,18,11,"value"],[19,18,18,16],[20,4,19,2],[21,4,20,2],[21,8,20,6,"value"],[21,13,20,11],[21,17,20,15],[21,21,20,19],[21,23,20,21],[22,6,21,4],[22,13,21,11,"identity"],[22,21,21,19],[23,4,22,2],[24,4,23,2],[24,8,23,6],[24,15,23,13,"value"],[24,20,23,18],[24,24,23,22],[24,32,23,30],[24,34,23,32],[25,6,24,4],[25,13,24,11,"isArray"],[25,20,24,18],[25,21,24,19,"value"],[25,26,24,24],[25,27,24,25],[25,30,25,8,"baseMatchesProperty"],[25,49,25,27],[25,50,25,28,"value"],[25,55,25,33],[25,56,25,34],[25,57,25,35],[25,58,25,36],[25,60,25,38,"value"],[25,65,25,43],[25,66,25,44],[25,67,25,45],[25,68,25,46],[25,69,25,47],[25,72,26,8,"baseMatches"],[25,83,26,19],[25,84,26,20,"value"],[25,89,26,25],[25,90,26,26],[26,4,27,2],[27,4,28,2],[27,11,28,9,"property"],[27,19,28,17],[27,20,28,18,"value"],[27,25,28,23],[27,26,28,24],[28,2,29,0],[29,2,31,0,"module"],[29,8,31,6],[29,9,31,7,"exports"],[29,16,31,14],[29,19,31,17,"baseIteratee"],[29,31,31,29],[30,0,31,30],[30,3]],"functionMap":{"names":["<global>","baseIteratee"],"mappings":"AAA;ACa;CDe"},"hasCjsExports":true},"type":"js/module"}]}