merge-deep
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -14,4 +14,4 @@ /*! | ||
module.exports = function merge(orig, objects) { | ||
if (!isObject(o)) return {}; | ||
if (!isObject(objects)) return o; | ||
if (!isObject(orig)) return {}; | ||
if (!isObject(objects)) return orig; | ||
@@ -42,2 +42,2 @@ var len = arguments.length - 1; | ||
return Object.prototype.hasOwnProperty.call(obj, key); | ||
} | ||
} |
{ | ||
"name": "merge-deep", | ||
"description": "Recursively merge values in a javascript object.", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"homepage": "https://github.com/jonschlinkert/merge-deep", | ||
@@ -15,5 +15,2 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
], | ||
"files": [ | ||
"index.js" | ||
], | ||
"main": "index.js", | ||
@@ -20,0 +17,0 @@ "engines": { |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
33
4773
1