bv-ui-core
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -71,3 +71,12 @@ /** | ||
domainState = Object.assign({}, domainState, domainObject); | ||
// Manually copying keys, because I can't safely use Object.assign | ||
// or the npm object-assign module, or even lodash.assign/lodash.extend, | ||
// as they're assuming ES5 environments. | ||
// | ||
// TODO: Once we drop IE11, simplify. | ||
for (var key in domainObject) { | ||
if (domainObject.hasOwnProperty(key)) { | ||
domainState[key] = domainObject[key]; | ||
} | ||
} | ||
@@ -74,0 +83,0 @@ // Special case: If the domain is a valid IPv4 address, |
{ | ||
"name": "bv-ui-core", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"license": "Apache 2.0", | ||
@@ -5,0 +5,0 @@ "description": "Bazaarvoice UI-related JavaScript", |
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
5125
216774
108