(value: any)
| 1 | export const isDef = (value: any) => typeof value !== 'undefined'; |
| 2 | |
| 3 | export const isString = (value: any): value is string => typeof value === 'string'; |
| 4 | |
| 5 | export const prevent = (ev?: Event) => ev?.preventDefault(); |
| 6 |
no outgoing calls
no test coverage detected