(input?: string)
| 34 | * removed. This function also returns an empty string if the input is undefined. |
| 35 | */ |
| 36 | export const sanitize = (input?: string): string => input?.replace(/[\W]/g, '') ?? '' |
| 37 | |
| 38 | export const delay = async (ms: number): Promise<void> => new Promise(resolve => setTimeout(resolve, ms)) |
| 39 |
no outgoing calls
no test coverage detected