Package Exports
- promise-to-callback
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (promise-to-callback) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
promise-to-callback 
Convert promise to callback interface
Because there are many promise implementations and callbacks are better to handle errors.
Install
$ npm install --save promise-to-callback
Usage
var promiseToCallback = require('promise-to-callback');
promiseToCallback(promise)(function(err, data) {
...
});
License
MIT © Steve Mao