JSPM

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

Tiny LocalStorage utility library

Package Exports

  • @analytics/localstorage-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/localstorage-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

LocalStorage Utilities

Tiny LocalStorage utilities library for analytics & whatever else 🌈

Exposes hasLocalStorage function.

This will work with analytics or as a standalone import in your code.

How to install

Install @analytics/localstorage-utils from npm.

npm install @analytics/localstorage-utils

API

Below is the api for @analytics/localstorage-utils. These utilities are tree-shakable.

hasLocalStorage

Check if localStorage is supported

import { hasLocalStorage } from '@analytics/localstorage-utils'

if (hasLocalStorage()) {
  // Use local storage 
}