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
49
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.8.1 to 2.8.2

12

lib/global/index.js

@@ -22,4 +22,4 @@ /**

if (globalObj && globalObj.__esModule) {
const override = {
get: function (target, prop, receiver) {
const proxyGlobal = new Proxy(globalObj, {
get: function (target, prop) {
if (prop === 'default') {

@@ -29,10 +29,10 @@ return target

return Reflect.get(receiver, prop, target)
return target[prop]
},
set: function (target, prop, value) {
Reflect.set(target, prop, value)
target[prop] = value
return true
},
};
const proxyGlobal = new Proxy(globalObj, override)
})
return proxyGlobal

@@ -39,0 +39,0 @@ }

{
"name": "bv-ui-core",
"version": "2.8.1",
"version": "2.8.2",
"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