npm.io
1.0.6 • Published 3 years ago

borek

Licence
MIT
Version
1.0.6
Deps
0
Size
3 kB
Vulns
0
Weekly
0

Download Package

First you need to install the package

npm i borek

Setup Package

You can use it by importing it into the project you are using.

// es6 before
const cookie = require('borek')
// es6 after
import cookie from 'borek'

If you want to create a new cookie, the "name" and "value" are needed. If the cookie name is the same, it will update the existing cookie.

cookie.set(name, value)

You only need the "name" to read the cookie.

cookie.get(name)