2.0.0 • Published 6 years ago

parse-cookie-phantomjs v2.0.0

Weekly downloads
391
License
MIT
Repository
github
Last release
6 years ago

Deprecated

PhantomJS is deprecated.


parse-cookie-phantomjs Build Status

Parse a cookie for use in PhantomJS

Accepts a cookie string and returns an object ready to be passed into phantom.addCookie().

Install

$ npm install --save parse-cookie-phantomjs

Usage

var parseCookiePhantomjs = require('parse-cookie-phantomjs');

parseCookiePhantomjs('foo=bar; Path=/; Domain=localhost');
/*
{
	name: 'foo',
	value: 'bar',
	domain: 'localhost',
	path: '/',
	httponly: false,
	secure: false,
	expires: 'Infinity'
}
*/

License

MIT © Sindre Sorhus