4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
|
export async function awaitAsync(ms = 0) {
|
||
|
await new Promise((resolve) => setTimeout(resolve, ms));
|
||
|
}
|