Comparing version 0.0.18 to 0.0.19
@@ -5,3 +5,3 @@ { | ||
"description": "Core JavaScript library for browser runtime", | ||
"version": "0.0.18", | ||
"version": "0.0.19", | ||
"author": { | ||
@@ -8,0 +8,0 @@ "name": "fish" |
@@ -85,3 +85,3 @@ /** | ||
var maxDepth = 5; | ||
var maxDepth = 8; | ||
function deepMerge(dest, src, directs, depth) { | ||
@@ -140,6 +140,6 @@ var i, j, len, src, depth = depth || 0; | ||
var root; | ||
if(typeof process === 'object'){ | ||
root = global; | ||
if (typeof window === 'object') { | ||
root = window; | ||
} else { | ||
root = window; | ||
root = {}; | ||
} | ||
@@ -146,0 +146,0 @@ |
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
22442