callbackify
callbackify copied to clipboard
npm module: backwards compatibilify your callback functions while migrating apis to promises
If there is a error thrown in the callback, I believe the current implementation creates an unhandled promise rejection. Wrapping the calls in `process.nextTick` appears to fix it in my...
Heya, it would be nice if this package name could be used as a polyfill for Node's [`util.callbackify()`](https://nodejs.org/dist/latest-v8.x/docs/api/util.html#util_util_callbackify_original) - a similar feature with a perhaps slightly more comprehensive implementation. The...