Skip to content

Instantly share code, notes, and snippets.

@aherve
Created December 7, 2016 13:33
Show Gist options
  • Select an option

  • Save aherve/750c70955b614097df25917971841234 to your computer and use it in GitHub Desktop.

Select an option

Save aherve/750c70955b614097df25917971841234 to your computer and use it in GitHub Desktop.
function sleep (ms: number) {
return new Promise(resolve => {
setTimeout(resolve, ms)
})
}
async function main () {
console.log('hello')
await sleep(1000) // non-blocking
console.log('good bye')
}
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment