parse-cookie-phantomjsdeprecated

Parse a cookie for use in PhantomJS

Usage no npm install needed!

<script type="module">
  import parseCookiePhantomjs from 'https://cdn.skypack.dev/parse-cookie-phantomjs';
</script>

README

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