(ms: number)
| 1 | export function waitFor(ms: number): Promise<unknown> { |
| 2 | return new Promise((res) => window.setTimeout(res, ms)); |
| 3 | } |
| 4 | |
| 5 | export function getLinesInString(input: string) { |
| 6 | return input.split("\n"); |
no outgoing calls
no test coverage detected