summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js')
-rw-r--r--includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js b/includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js
deleted file mode 100644
index 1f49e6f..0000000
--- a/includes/external/school/node_modules/lodash/_customDefaultsAssignIn.js
+++ /dev/null
@@ -1,29 +0,0 @@
-var eq = require('./eq');
-
-/** Used for built-in method references. */
-var objectProto = Object.prototype;
-
-/** Used to check objects for own properties. */
-var hasOwnProperty = objectProto.hasOwnProperty;
-
-/**
- * Used by `_.defaults` to customize its `_.assignIn` use to assign properties
- * of source objects to the destination object for all destination properties
- * that resolve to `undefined`.
- *
- * @private
- * @param {*} objValue The destination value.
- * @param {*} srcValue The source value.
- * @param {string} key The key of the property to assign.
- * @param {Object} object The parent object of `objValue`.
- * @returns {*} Returns the value to assign.
- */
-function customDefaultsAssignIn(objValue, srcValue, key, object) {
- if (objValue === undefined ||
- (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {
- return srcValue;
- }
- return objValue;
-}
-
-module.exports = customDefaultsAssignIn;