just-extend
Advanced tools
Comparing version 4.0.0 to 4.0.1
@@ -50,3 +50,3 @@ module.exports = extend; | ||
var base = Array.isArray(value) ? [] : {}; | ||
result[key] = extend(true, isCloneable(result[key]) ? result[key] : base, value); | ||
result[key] = extend(true, result.hasOwnProperty(key) ? result[key] : base, value); | ||
} else { | ||
@@ -53,0 +53,0 @@ result[key] = value; |
{ | ||
"name": "just-extend", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "extend an object", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4266