Cache localstorage fix
All checks were successful
Build / Build NPM Project (push) Successful in 39s
Build / Tag Version (push) Successful in 7s
Build / Publish Documentation (push) Successful in 36s

This commit is contained in:
Zakary Timson 2024-10-15 16:39:29 -04:00
parent b103b6f786
commit 151465aa65
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@ztimson/utils", "name": "@ztimson/utils",
"version": "0.20.5", "version": "0.20.6",
"description": "Utility library", "description": "Utility library",
"author": "Zak Timson", "author": "Zak Timson",
"license": "MIT", "license": "MIT",

View File

@ -25,7 +25,7 @@ export class Cache<K extends string | number | symbol, T> {
* @param options * @param options
*/ */
constructor(public readonly key?: keyof T, public readonly options: CacheOptions = {}) { constructor(public readonly key?: keyof T, public readonly options: CacheOptions = {}) {
if(options.storageKey && !options.storage && window?.localStorage) if(options.storageKey && !options.storage && window && window?.localStorage)
options.storage = window.localStorage; options.storage = window.localStorage;
if(options.storageKey && options.storage) { if(options.storageKey && options.storage) {
const stored = options.storage.getItem(options.storageKey); const stored = options.storage.getItem(options.storageKey);