(key: string)
| 8 | */ |
| 9 | |
| 10 | export function localStorageGetItem(key: string): any { |
| 11 | try { |
| 12 | return localStorage.getItem(key); |
| 13 | } catch (error) { |
| 14 | return null; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | export function localStorageRemoveItem(key: string): void { |
| 19 | try { |
no outgoing calls
no test coverage detected