source: src/utils/storage-available.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 576 bytes
Line 
1// ----------------------------------------------------------------------
2
3export function localStorageAvailable() {
4 try {
5 const key = '__some_random_key_you_are_not_going_to_use__';
6 window.localStorage.setItem(key, key);
7 window.localStorage.removeItem(key);
8 return true;
9 } catch (error) {
10 return false;
11 }
12}
13
14export function localStorageGetItem(key: string, defaultValue = '') {
15 const storageAvailable = localStorageAvailable();
16
17 let value;
18
19 if (storageAvailable) {
20 value = localStorage.getItem(key) || defaultValue;
21 }
22
23 return value;
24}
Note: See TracBrowser for help on using the repository browser.