Package Exports
- @analytics/cookie-utils
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@analytics/cookie-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Cookie Utilities
A tiny cookie utility library with fallbacks in 444 bytes.
This module will automatically fail back to global window storage if cookies are not available.
Exposes hasCookies, getCookie, setCookie, & removeCookie functions.
How to install
Install @analytics/cookie-utils from npm.
npm install @analytics/cookie-utilsAPI
Below is the api for @analytics/cookie-utils. These utilities are tree-shakable.
hasCookies
Check if cookies are supported. Will verify browser will accept cookies
import { hasCookies } from '@analytics/cookie-utils'
if (hasCookies()) {
// Use them 🍪
}getCookie
Get a cookie value.
import { getCookie } from '@analytics/cookie-utils'
const value = getCookie('cookie-key')setCookie
Set a cookie value.
import { setCookie } from '@analytics/cookie-utils'
/* simple set */
setCookie('test', 'a')
/* complex set - cookie(name, value, ttl, path, domain, secure) */
setCookie('test', 'a', 60*60*24, '/api', '*.example.com', true)deleteCookie
Delete a cookie.
import { deleteCookie } from '@analytics/cookie-utils'
deleteCookie('cookie-key')