@pnp/common
Advanced tools
Comparing version 2.1.0-beta3 to 2.1.0-beta4
@@ -30,3 +30,10 @@ import { isFunc } from "./util"; | ||
maps[i].forEach(function (v, k) { | ||
target.set(k, v); | ||
if (Object.prototype.toString.call(v) === "[object Object]") { | ||
// we only handle one level of deep object merging | ||
var existing = target.get(k); | ||
target.set(k, Object.assign(existing, v)); | ||
} | ||
else { | ||
target.set(k, v); | ||
} | ||
}); | ||
@@ -33,0 +40,0 @@ } |
{ | ||
"name": "@pnp/common", | ||
"version": "2.1.0-beta3", | ||
"version": "2.1.0-beta4", | ||
"description": "pnp - provides shared functionality across all pnp libraries", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
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
68548
1138