Skip to content

Instantly share code, notes, and snippets.

@rtorres90
Created July 19, 2017 15:12
Show Gist options
  • Save rtorres90/0c6a9823d84ddd5eaf4f53761487622b to your computer and use it in GitHub Desktop.
Save rtorres90/0c6a9823d84ddd5eaf4f53761487622b to your computer and use it in GitHub Desktop.
// sleep time expects milliseconds
function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
// Usage!
sleep(500).then(() => {
// Do something after the sleep!
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment