Skip to content

Instantly share code, notes, and snippets.

@erikccoder
Created October 7, 2016 05:52
Show Gist options
  • Save erikccoder/f2221d269c6c6b7260235ae4d1f15935 to your computer and use it in GitHub Desktop.
Save erikccoder/f2221d269c6c6b7260235ae4d1f15935 to your computer and use it in GitHub Desktop.
create a promise which will resolve after given ms.
let delay = ms => new Promise(r => setTimeout(r, ms));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment