mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 21:53:36 +01:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
export async function sleep(millis: number) {
|
|
await new Promise((resolve) => setTimeout(resolve, millis));
|
|
}
|