(key: string, value: any)
| 84 | } |
| 85 | |
| 86 | export function storageSetItem(key: string, value: any): void { |
| 87 | window.sessionStorage.setItem(key, value); |
| 88 | } |
| 89 | |
| 90 | export function storageSetIfIsNotExist(key: string, toSet: any): void { |
| 91 | if (storageGetItem(key, null, false) === null) storageSetItem(key, toSet); |
no test coverage detected