(key: string, value: any)
| 38 | } |
| 39 | } |
| 40 | export function setStorage(key: string, value: any) { |
| 41 | if (typeof window !== 'undefined') { |
| 42 | localStorage.setItem(key, value); |
| 43 | } |
| 44 | } |
| 45 | export function removeStorage(key: string) { |
| 46 | if (typeof window !== 'undefined') { |
| 47 | localStorage.removeItem(key); |
no outgoing calls
no test coverage detected