JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 77524
  • Score
    100M100P100Q169046F
  • License MIT

Tiny cookie utility library

Package Exports

  • @analytics/cookie-utils
  • @analytics/cookie-utils/dist/analytics-util-cookie.js
  • @analytics/cookie-utils/dist/analytics-util-cookie.module.js

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 472 bytes.

This module will automatically fail back to global window storage if cookies are not available.

Exposes hasCookies, getCookie, setCookie, & removeCookie functions.

See live demo.

How to install

Install @analytics/cookie-utils from npm.

npm install @analytics/cookie-utils

API

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)

removeCookie

Remove a cookie.

import { removeCookie } from '@analytics/cookie-utils'

removeCookie('cookie-key')