Skip to content

Instantly share code, notes, and snippets.

@ahafidi
Created January 2, 2022 13:44
Show Gist options
  • Save ahafidi/b38b00869de7047608aa4da4d55cd171 to your computer and use it in GitHub Desktop.
Save ahafidi/b38b00869de7047608aa4da4d55cd171 to your computer and use it in GitHub Desktop.
const sleep = async (ms) => {
await new Promise(resolve => {
setTimeout(() => resolve(0), ms)
})
}
await sleep(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment