Skip to content

Instantly share code, notes, and snippets.

@ValentaTomas
Created May 29, 2023 20:36
Show Gist options
  • Save ValentaTomas/69afd8a633133f1fe91914ac3a76fdbd to your computer and use it in GitHub Desktop.
Save ValentaTomas/69afd8a633133f1fe91914ac3a76fdbd to your computer and use it in GitHub Desktop.
Promisified setTimeout
export async function wait(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment