@incanta/config
Advanced tools
Comparing version 0.1.13 to 0.1.14
@@ -125,3 +125,8 @@ "use strict"; | ||
else if (typeof value === "object") { | ||
walkObject(value); | ||
if (value === null) { | ||
curObj[property] = {}; | ||
} | ||
else { | ||
walkObject(value); | ||
} | ||
} | ||
@@ -128,0 +133,0 @@ } |
{ | ||
"name": "@incanta/config", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "exports": { |
@@ -156,3 +156,7 @@ import merge from "lodash.merge"; | ||
} else if (typeof value === "object") { | ||
walkObject(value); | ||
if (value === null) { | ||
curObj[property] = {}; | ||
} else { | ||
walkObject(value); | ||
} | ||
} | ||
@@ -159,0 +163,0 @@ } |
Sorry, the diff of this file is not supported yet
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
36406
649