
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
@analytics/localstorage-utils
Advanced tools
A tiny localStorage utility library with fallbacks in 231 bytes
.
This module will automatically fail back to global window storage if localStorage
is not available.
Exposes hasLocalStorage
, getItem
, setItem
, & removeItem
functions.
Install @analytics/localstorage-utils
from npm.
npm install @analytics/localstorage-utils
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
}
getItem
Get a localStorage value.
import { getItem } from '@analytics/localstorage-utils'
const value = getItem('cookie-key')
setItem
Set a localStorage value.
import { setItem } from '@analytics/localstorage-utils'
setItem('item-key', 'a')
removeItem
Delete a localStorage value.
import { removeItem } from '@analytics/localstorage-utils'
removeItem('key')
FAQs
Tiny LocalStorage utility library
The npm package @analytics/localstorage-utils receives a total of 138,688 weekly downloads. As such, @analytics/localstorage-utils popularity was classified as popular.
We found that @analytics/localstorage-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.