promisifier-no-error
v1.0.2
Published
```javascript var Promise = require('bluebird');
Downloads
14
Readme
Usage
var Promise = require('bluebird');
horseObj = { drink: function(cb) { cb('slurp'); } };
var horse = Promise.promisifyAll(horseObj, { promisifier: require('promisifier-no-error') });
horse.drinkAsync().then(function(data){
console.log(data);
// Can use here, now promisified normally.
});