promise-call
v1.0.1
Published
call node style function as promise
Downloads
4
Readme
promise-call
Install
npm i promise-call
Usage
var pcall = require('promise-call');
pcall(fs.readfile, filename)
.then(function(content) {
})
.catch(function(error) {
});