@onesy/cookie
v1.0.0
Published
Cookie
Downloads
148
Maintainers
Readme
Getting started
Add
yarn add @onesy/cookie
Use
import OnesyCookie from '@onesy/cookie';
const onesyCookie = new OnesyCookie();
// Add
onesyCookie.add('a', 4);
// Has
onesyCookie.has('a');
// true
// Get
onesyCookie.get('a');
// 4
// Remove
onesyCookie.remove('a');
onesyCookie.get('a');
// undefined
Dev
Install
yarn
Test
yarn test
Prod
Build
yarn build