putil-merge
Advanced tools
Comparing version 3.1.4 to 3.2.0
@@ -32,3 +32,5 @@ /* putil-merge | ||
if (source === target) return target; | ||
for (const key of Object.getOwnPropertyNames(source)) { | ||
const keys = Object.getOwnPropertyNames(source); | ||
keys.push(...Object.getOwnPropertySymbols(source)); | ||
for (const key of keys) { | ||
if (options.filter && !options.filter(source, key)) | ||
@@ -98,2 +100,1 @@ continue; | ||
module.exports = merge; | ||
{ | ||
"name": "putil-merge", | ||
"description": "Lightweight solution for merging multiple objects into one. Also it supports deep merge and deep clone", | ||
"version": "3.1.4", | ||
"version": "3.2.0", | ||
"author": "Panates Ltd.", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
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
9196
88