@oozcitak/util
Advanced tools
Comparing version 8.2.0 to 8.3.0
@@ -50,3 +50,6 @@ "use strict"; | ||
forEachObject(defaults, (key, val) => { | ||
if (isObject(val)) { | ||
if (isFunction(val)) { | ||
result[key] = val; | ||
} | ||
else if (isObject(val)) { | ||
result[key] = applyDefaults(result[key], val); | ||
@@ -53,0 +56,0 @@ } |
{ | ||
"name": "@oozcitak/util", | ||
"version": "8.2.0", | ||
"version": "8.3.0", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "util", |
Sorry, the diff of this file is not supported yet
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
50645
1200