(ev?: Event)
| 3 | export const isString = (value: any): value is string => typeof value === 'string'; |
| 4 | |
| 5 | export const prevent = (ev?: Event) => ev?.preventDefault(); |
| 6 | |
| 7 | export const stop = (ev?: Event) => ev?.stopPropagation(); |
| 8 |
nothing calls this directly
no outgoing calls
no test coverage detected