(key: string, value: any)
| 22 | } |
| 23 | |
| 24 | export function localStorageSetItem(key: string, value: any): void { |
| 25 | try { |
| 26 | return localStorage.setItem(key, value); |
| 27 | } catch (error) {} |
| 28 | } |
| 29 | |
| 30 | export function sessionStorageGetItem(key: string): any { |
| 31 | try { |
no outgoing calls
no test coverage detected