Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bv-ui-core

Package Overview
Dependencies
Maintainers
6
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bv-ui-core - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

11

lib/domainPolice/index.js

@@ -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,

2

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc