CJ_Clippy 87b054e66f
Some checks failed
ci / test (push) Failing after 4m45s
fp/our CI/CD / build (push) Successful in 58s
restrict playback to logged in visitors
2025-11-19 17:46:35 -08:00

3 lines
109 B
TypeScript

export default async function sleep(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}