New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cookie-monster

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cookie-monster - npm Package Compare versions

Comparing version 0.0.7 to 0.1.0

CHANGELOG.md

8

index.js

@@ -22,15 +22,15 @@ 'use strict';

if (opts.expires){
if (opts.hasOwnProperty('expires')){
newCookie += '; expires=' + opts.expires;
}
if (opts.path) {
if (opts.hasOwnProperty('path')) {
newCookie += '; path=' + opts.path;
}
if (opts.domain) {
if (opts.hasOwnProperty('domain')) {
newCookie += '; domain=' + opts.domain;
}
if (opts.secure) {
if (opts.hasOwnProperty('secure')) {
newCookie += '; secure';

@@ -37,0 +37,0 @@ }

{
"name": "cookie-monster",
"description": "Browserify-compatible module to get and set cookies in the browser",
"version": "0.0.7",
"version": "0.1.0",
"repository": {

@@ -6,0 +6,0 @@ "type": "git",

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