first commit

This commit is contained in:
2025-10-26 23:10:15 +08:00
commit 8f0345b7be
14961 changed files with 2356381 additions and 0 deletions

12
node_modules/@nodeutils/defaults-deep/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
"use strict";
var _ = require("lodash");
module.exports = function () {
var output = {};
_.toArray(arguments).reverse().forEach(function (item) {
_.mergeWith(output, item, function (objectValue, sourceValue) {
return _.isArray(sourceValue) ? sourceValue : undefined;
});
});
return output;
};