mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
export function sleep(msec: number) {
|
|
return new Promise<void>(res => {
|
|
setTimeout(() => {
|
|
res();
|
|
}, msec);
|
|
});
|
|
}
|