()
| 15 | const hasLocation = () => hasWindow() && typeof window.location !== 'undefined'; |
| 16 | const hasHistory = () => hasWindow() && typeof window.history?.replaceState === 'function'; |
| 17 | const hasLocalStorage = () => hasWindow() && typeof window.localStorage !== 'undefined'; |
| 18 | |
| 19 | const isString = (value) => typeof value === 'string'; |
| 20 |
no test coverage detected