denodeify icon indicating copy to clipboard operation
denodeify copied to clipboard

Standalone denodeify, for all of your callback -> promise needs. Just drop in an ES6 complaint promise library & stir

Results 3 denodeify issues
Sort by recently updated
recently updated
newest added

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...