XuelesszzZ 94af2b8e7b 6-30-5 | vor 1 Jahr | |
---|---|---|
.. | ||
History.md | vor 1 Jahr | |
LICENSE | vor 1 Jahr | |
README.md | vor 1 Jahr | |
index.js | vor 1 Jahr | |
package.json | vor 1 Jahr |
Promisifies all the selected functions in an object.
var thenifyAll = require('thenify-all');
var fs = thenifyAll(require('fs'), {}, [
'readFile',
'writeFile',
]);
fs.readFile(__filename).then(function (buffer) {
console.log(buffer.toString());
});
Promisifies all the selected functions in an object.
source
- the source object for the async functionsobj
- the destination to set all the promisified methodsmethods
- an array of method names of source
Promisifies all the selected functions in an object and backward compatible with callback.
source
- the source object for the async functionsobj
- the destination to set all the promisified methodsmethods
- an array of method names of source
Exports thenify this package uses.