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

bv-ui-core

Package Overview
Dependencies
Maintainers
4
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.5.1 to 2.5.2

11

lib/cookie/index.js

@@ -65,5 +65,10 @@ /**

*/
function removeCookie (name) {
function removeCookie (name, domain) {
delete store[name];
createCookie(name, '', -1);
if (domain) {
createCookie(name, null, -1, domain);
}
else {
createCookie(name, '', -1);
}
}

@@ -84,3 +89,3 @@

cookieConsent.subscribe(name, 'disable', function () {
removeCookie(name);
removeCookie(name, domain);
});

@@ -87,0 +92,0 @@ },

{
"name": "bv-ui-core",
"version": "2.5.1",
"version": "2.5.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