bluebird_feathers
v1.1.3
Published
a promise utility library
Downloads
4
Readme
Feathers
A toolbelt of additional promise functions with a focus on array and object methods. Currently bluebird only.
##Example
var Promise = require('bluebird');
require('bluebird_feathers')(Promise);
Promise.remember(function() {
return 'Remembering';
}, function() {
return ' returned promise values';
}, function() {
return ' can be pretty useful!';
}, function(arr) {
console.log(arr.join(''));
})
//outputs 'Remembering returned promise values can be pretty useful!'
##Installation
npm install bluebird_feathers