denodeify
denodeify copied to clipboard
Standalone denodeify, for all of your callback -> promise needs. Just drop in an ES6 complaint promise library & stir
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...
Node 8 introduced [`util.promisify`](https://nodejs.org/api/util.html#util_util_promisify_original) to the standard library, which handles the simple use case of this library. It also allows functions to opt-in to specifying how they are promisified, which...