Skip to content

Instantly share code, notes, and snippets.

View stash's full-sized avatar
🎯
Focusing

Jeremy Stashewsky stash

🎯
Focusing
View GitHub Profile
/*** tough-cookie/lib/cookie.js ***/
/* I added the following to the end of the file for testing purposes */
memstore = require('./memstore');
module.exports.MemoryCookieStore = memstore.MemoryCookieStore; // ok to keep the original label ~stash
/*** jsonstore.js ***/
var tough = require('tough-cookie');
// ...