Skip to content

delCache

Delete item from localStorage.

Usage

js
import { delCache } from 'js-cool'

Signature

typescript
function delCache(key: string): void

Parameters

ParameterTypeDescription
keystringKey to delete

Examples

js
setCache('user', { name: 'John' })
delCache('user')
getCache('user') // null

Released under the MIT License.