Skip to content

Instantly share code, notes, and snippets.

@miketromba
Created March 31, 2021 20:16
Show Gist options
  • Save miketromba/2f193e9231dd2281767377166380e635 to your computer and use it in GitHub Desktop.
Save miketromba/2f193e9231dd2281767377166380e635 to your computer and use it in GitHub Desktop.
sleep.js
// Returns promise that resolves in ms milliseconds
export async function sleep(ms) {
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