Skip to content

Instantly share code, notes, and snippets.

@shadowcodex
Created March 5, 2019 19:44
Show Gist options
  • Save shadowcodex/766565f22f648047b2e8e2c7858146a6 to your computer and use it in GitHub Desktop.
Save shadowcodex/766565f22f648047b2e8e2c7858146a6 to your computer and use it in GitHub Desktop.
sleep function using async/await
const sleep = (time) => {
return new Promise(resolve => {
setTimeout(resolve, time);
});
}
await sleep(1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment