File size: 481 Bytes
436a8e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
export function getLocalStorage(key: string) {
try {
const item = localStorage.getItem(key);
return item ? JSON.parse(item) : null;
} catch (error) {
console.error(`Error reading from localStorage key "${key}":`, error);
return null;
}
}
export function setLocalStorage(key: string, value: any) {
try {
localStorage.setItem(key, JSON.stringify(value));
} catch (error) {
console.error(`Error writing to localStorage key "${key}":`, error);
}
}
|