Skip to content

Instantly share code, notes, and snippets.

@zignd
Created February 10, 2017 19:11
Show Gist options
  • Select an option

  • Save zignd/f36209cca42246b4b8063b8b2bd563a9 to your computer and use it in GitHub Desktop.

Select an option

Save zignd/f36209cca42246b4b8063b8b2bd563a9 to your computer and use it in GitHub Desktop.
sleepAsync; setTimeout
function sleepAsync(ms) {
return new Promise((resolve, reject) => {
setTimeout(() => { return resolve(); }, ms);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment