Skip to content

Instantly share code, notes, and snippets.

@morficus
Created July 16, 2017 03:11
Show Gist options
  • Select an option

  • Save morficus/111d36e6e0dc67894561a4da7eaaa834 to your computer and use it in GitHub Desktop.

Select an option

Save morficus/111d36e6e0dc67894561a4da7eaaa834 to your computer and use it in GitHub Desktop.
A quick and dirty "sleep" method in JavaScript
let wait = ms => new Promise(resolve => setTimeout(resolve, ms));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment