@aofl/object-utils
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "@aofl/object-utils", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -52,3 +52,3 @@ /** | ||
let recursiveAssign = (pathParts, obj) => { | ||
const recursiveAssign = (pathParts, obj) => { | ||
if (pathParts.length === 0) { | ||
@@ -58,4 +58,4 @@ return Object.assign({}, obj, rightSource); | ||
let key = pathParts[0]; | ||
let subPath = pathParts.splice(1); | ||
const key = pathParts[0]; | ||
const subPath = pathParts.splice(1); | ||
return Object.assign({}, obj, { | ||
@@ -62,0 +62,0 @@ [key]: recursiveAssign(subPath, obj[key]) |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
7272
0