chensenlai 10988628a0 语音房项目初始化 | 5 년 전 | |
---|---|---|
.. | ||
LICENSE | 5 년 전 | |
README.md | 5 년 전 | |
index.js | 5 년 전 | |
package.json | 5 년 전 |
Promisify a callback-based function using any-promise
.
bluebird
Array
An added benefit is that throw
n errors in that async function will be caught by the promise!
var thenify = require('thenify');
var somethingAsync = thenify(function somethingAsync(a, b, c, callback) {
callback(null, a, b, c);
});
var thenify = require('thenify').withCallback;
var somethingAsync = thenify(function somethingAsync(a, b, c, callback) {
callback(null, a, b, c);
});
// somethingAsync(a, b, c).then(onFulfilled).catch(onRejected);
// somethingAsync(a, b, c, function () {});
Promisifies a function.