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

tough-cookie-file-store

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tough-cookie-file-store - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3

.github/workflows/tests.yml

7

CHANGELOG.md

@@ -10,2 +10,6 @@ # Changelog

## [v2.0.3] - 2020-09-28
### Changed
- Replaced Travis CI by Github Actions
## [v2.0.2] - 2020-05-16

@@ -53,3 +57,4 @@ ### Fixed

[unreleased]: https://github.com/ivanmarban/tough-cookie-file-store/compare/v2.0.2...develop
[unreleased]: https://github.com/ivanmarban/tough-cookie-file-store/compare/v2.0.3...develop
[v2.0.2]: https://github.com/ivanmarban/tough-cookie-file-store/compare/v2.0.2...v2.0.3
[v2.0.2]: https://github.com/ivanmarban/tough-cookie-file-store/compare/v2.0.1...v2.0.2

@@ -56,0 +61,0 @@ [v2.0.1]: https://github.com/ivanmarban/tough-cookie-file-store/compare/v2.0.0...v2.0.1

6

lib/cookie-file-store.js

@@ -331,5 +331,5 @@ 'use strict'

for (var domainName in dataJson) {
for (var pathName in dataJson[domainName]) {
for (var cookieName in dataJson[domainName][pathName]) {
for (const domainName in dataJson) {
for (const pathName in dataJson[domainName]) {
for (const cookieName in dataJson[domainName][pathName]) {
dataJson[domainName][pathName][cookieName] = Cookie.fromJSON(

@@ -336,0 +336,0 @@ JSON.stringify(dataJson[domainName][pathName][cookieName])

{
"name": "tough-cookie-file-store",
"description": "A JSON file store for tough-cookie module",
"version": "2.0.2",
"version": "2.0.3",
"author": "Ivan Marban",

@@ -35,26 +35,22 @@ "homepage": "https://github.com/ivanmarban/tough-cookie-file-store",

"scripts": {
"lint": "eslint lib --color",
"lint:fix": "eslint lib --color --fix",
"lint": "eslint lib test --color",
"format": "prettier-standard 'lib/**/*.js' 'test/**/*.js'",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test:coverage": "nyc --reporter=text --reporter=html mocha"
"test": "nyc --reporter=text --reporter=html --reporter=lcovonly mocha"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-datetime": "^1.6.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-mocha": "^6.3.0",
"chai": "^4.3.4",
"chai-datetime": "^1.8.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier-standard": "^16.3.0"
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1"
}
}

@@ -9,3 +9,3 @@ # tough-cookie-file-store

[![npm Downloads](https://img.shields.io/npm/dw/tough-cookie-file-store.svg)](https://npmcharts.com/compare/tough-cookie-file-store?minimal=true)
[![Build Status](https://travis-ci.org/ivanmarban/tough-cookie-file-store.svg?branch=master)](https://travis-ci.org/ivanmarban/tough-cookie-file-store)
[![Tests Status](https://github.com/ivanmarban/tough-cookie-file-store/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/ivanmarban/tough-cookie-file-store/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/ivanmarban/tough-cookie-file-store/badge.svg?branch=master)](https://coveralls.io/github/ivanmarban/tough-cookie-file-store?branch=master)

@@ -12,0 +12,0 @@ [![dependencies Status](https://david-dm.org/ivanmarban/tough-cookie-file-store/status.svg)](https://david-dm.org/ivanmarban/tough-cookie-file-store)

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