(key: string)
| 28 | } |
| 29 | |
| 30 | export function sessionStorageGetItem(key: string): any { |
| 31 | try { |
| 32 | return sessionStorage.getItem(key); |
| 33 | } catch (error) { |
| 34 | return null; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | export function sessionStorageRemoveItem(key: string): void { |
| 39 | try { |
no outgoing calls
no test coverage detected