Skip to content

Instantly share code, notes, and snippets.

@evantahler
Created September 28, 2017 16:25
Show Gist options
  • Save evantahler/b6e1f21288a3060342a24dc32df69719 to your computer and use it in GitHub Desktop.
Save evantahler/b6e1f21288a3060342a24dc32df69719 to your computer and use it in GitHub Desktop.
util.promisify
const {promisify} = require('util')
async sleep (time) {
return promisify(setTimeout)(time)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment