ai/src/utils/sleep.ts
syuilo fd50dc790f ✌️
2024-01-21 13:27:02 +09:00

7 lines
123 B
TypeScript

export function sleep(msec: number) {
return new Promise<void>(res => {
setTimeout(() => {
res();
}, msec);
});
}