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

koekje

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koekje - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

12

index.js

@@ -26,10 +26,14 @@ 'use strict';

var data = cookie.get('koekje') || ''
var data = cookie.get('koekje')
, length = 0
, key;
data = data.charAt(0) === prefix ? data : '';
storage = qs.parse(data.slice(1));
storage = data && data.charAt(0) === prefix
? qs.parse(data.slice(1))
: {};
for (key in storage) length++;
for (key in storage) {
if (has.call(storage, key)) length++;
}
koekje.length = length;

@@ -36,0 +40,0 @@ }

{
"name": "koekje",
"version": "0.0.3",
"version": "0.0.4",
"description": "A sessionStorage interface for cookies",

@@ -38,5 +38,5 @@ "main": "index.js",

"dependencies": {
"cookie-monster": "0.0.x",
"cookie-monster": "0.1.x",
"querystringify": "0.0.x"
}
}
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