https://github.com/doodlewind/ck.js
cookie lib in 2 lines
https://github.com/doodlewind/ck.js
Last synced: about 1 year ago
JSON representation
cookie lib in 2 lines
- Host: GitHub
- URL: https://github.com/doodlewind/ck.js
- Owner: doodlewind
- Created: 2016-10-28T11:27:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-28T11:28:13.000Z (over 9 years ago)
- Last Synced: 2025-07-01T12:02:57.159Z (about 1 year ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ck.js
cookie lib in 2 lines
## Install
``` html
```
## API
Barebone getter and setter:
### Set Cookie
``` js
ck.set({ token: 123 }) // set as permanent
```
### Get Cookie
``` js
ck.get('token') // '123'
```
## License
MIT