(key: string)
| 36 | } |
| 37 | |
| 38 | export function sessionStorageRemoveItem(key: string): void { |
| 39 | try { |
| 40 | sessionStorage.removeItem(key); |
| 41 | } catch (error) {} |
| 42 | } |
| 43 | |
| 44 | export function sessionStorageSetItem(key: string, value: any): void { |
| 45 | try { |
no outgoing calls
no test coverage detected