Socket
Socket
Sign inDemoInstall

vue-cookies

Package Overview
Dependencies
0
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.1 to 1.7.2

2

package.json
{
"name": "vue-cookies",
"version": "1.7.1",
"version": "1.7.2",
"description": "A simple Vue.js plugin for handling browser cookies",

@@ -5,0 +5,0 @@ "main": "vue-cookies.js",

@@ -10,3 +10,3 @@ # vue-cookies

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-cookies@1.7.1/vue-cookies.js"></script>
<script src="https://unpkg.com/vue-cookies@1.7.2/vue-cookies.js"></script>
```

@@ -13,0 +13,0 @@ ### Package Managers

/**
* Vue Cookies v1.7.1
* Vue Cookies v1.7.2
* https://github.com/cmp-cc/vue-cookies

@@ -99,3 +99,3 @@ *

}
document.cookie = encodeURIComponent(key) + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT" + (domain ? "; domain=" + domain : defaultConfig.domain) + (path ? "; path=" + path : defaultConfig.path) + "; Secure";
document.cookie = encodeURIComponent(key) + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT" + (domain ? "; domain=" + domain : defaultConfig.domain) + (path ? "; path=" + path : defaultConfig.path);
return this;

@@ -102,0 +102,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc