Skip to content

Instantly share code, notes, and snippets.

@josuecau
Created December 2, 2019 17:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josuecau/121f84de17b6337b4d6adb6882038c68 to your computer and use it in GitHub Desktop.
Save josuecau/121f84de17b6337b4d6adb6882038c68 to your computer and use it in GitHub Desktop.
JavaScript setTimeout as a Promise
module.exports = delay => new Promise(resolve => setTimeout(resolve, delay))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment