Skip to content

Instantly share code, notes, and snippets.

@autr
Created March 18, 2021 00:49
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 autr/07065d1cd9583977b35c89af2d8617c5 to your computer and use it in GitHub Desktop.
Save autr/07065d1cd9583977b35c89af2d8617c5 to your computer and use it in GitHub Desktop.
async wait / timeout function for JS
const wait = async ms => ( new Promise(resolve => setTimeout(resolve, ms) ) )
module.exports = wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment