-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I thought it was worth putting a note on on this project; denodeify is now effectively redundant.
If you're using Node > 8, then util.promisify does the same job.
I was using denodeify (thanks, its been great):
const glob = require('glob')
const denodeify = require('denodeify')
const find = denodeify(glob)
module.exports = findBut now I use the inbuilt promisify:
const glob = require('glob')
const { promisify } = require('util')
const find = promisify(glob)
module.exports = findReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels