@travetto/config
Advanced tools
Comparing version 0.0.22 to 0.0.23
@@ -19,3 +19,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.22" | ||
"version": "0.0.23" | ||
} |
@@ -81,7 +81,7 @@ import { deepAssign, isPlainObject, isSimple } from '@travetto/base'; | ||
let sub: any = this.storage; | ||
while (keys.length && sub[keys[0]]) { | ||
while (keys.length && sub) { | ||
sub = sub[keys.shift()!]; | ||
} | ||
const conf = deepAssign(obj, sub); | ||
const conf = deepAssign(obj, sub || {}); | ||
@@ -88,0 +88,0 @@ // Handle process.env on bind as the structure we need may not |
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
7933