Skip to content

Instantly share code, notes, and snippets.

@ianfabs
Created March 2, 2019 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianfabs/006359b58176dacdf70abd186e2f3321 to your computer and use it in GitHub Desktop.
Save ianfabs/006359b58176dacdf70abd186e2f3321 to your computer and use it in GitHub Desktop.
A tiny module that implements sleep in javascript
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));
module.exports = sleep;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment