From 23563c7188e089929b60f9e10721c6fc43a220ff Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 22 Jun 2023 23:06:12 +0200 Subject: Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated) --- .../school/node_modules/lodash/mergeWith.js | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 includes/external/school/node_modules/lodash/mergeWith.js (limited to 'includes/external/school/node_modules/lodash/mergeWith.js') diff --git a/includes/external/school/node_modules/lodash/mergeWith.js b/includes/external/school/node_modules/lodash/mergeWith.js deleted file mode 100644 index 1b43a2c..0000000 --- a/includes/external/school/node_modules/lodash/mergeWith.js +++ /dev/null @@ -1,39 +0,0 @@ -var baseMerge = require('./_baseMerge'), - createAssigner = require('./_createAssigner'); - -/** - * This method is like `_.merge` except that it accepts `customizer` which - * is invoked to produce the merged values of the destination and source - * properties. If `customizer` returns `undefined`, merging is handled by the - * method instead. The `customizer` is invoked with six arguments: - * (objValue, srcValue, key, object, source, stack). - * - * **Note:** This method mutates `object`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} customizer The function to customize assigned values. - * @returns {Object} Returns `object`. - * @example - * - * function customizer(objValue, srcValue) { - * if (_.isArray(objValue)) { - * return objValue.concat(srcValue); - * } - * } - * - * var object = { 'a': [1], 'b': [2] }; - * var other = { 'a': [3], 'b': [4] }; - * - * _.mergeWith(object, other, customizer); - * // => { 'a': [1, 3], 'b': [2, 4] } - */ -var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { - baseMerge(object, source, srcIndex, customizer); -}); - -module.exports = mergeWith; -- cgit