You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
483 B
20 lines
483 B
export function loadLocalStorageData (itemKey) {
|
|
try {
|
|
const serializedData = window.localStorage.getItem(itemKey)
|
|
if (serializedData === null) {
|
|
return undefined
|
|
}
|
|
return JSON.parse(serializedData)
|
|
} catch (err) {
|
|
return undefined
|
|
}
|
|
}
|
|
|
|
export function saveLocalStorageData (data, itemKey) {
|
|
try {
|
|
const serializedData = JSON.stringify(data)
|
|
window.localStorage.setItem(itemKey, serializedData)
|
|
} catch (err) {
|
|
console.warn(err)
|
|
}
|
|
}
|
|
|