8000 GitHub - jbarabander/Feathers: A toolbelt of additional promise functions with a focus on array and object methods. Currently bluebird only.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A toolbelt of additional promise functions with a focus on array and object methods. Currently bluebird only.

Notifications You must be signed in to change notification settings

jbarabander/Feathers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 Promise.resolve('Remembering');
}, function() {
  return Promise.resolve(' returned promise values');
}, function() {
  return Promise.resolve(' can be pretty useful!');
}, function(arr) {
  console.log(arr.join(''));
})
//outputs 'Remembering returned promise values can be pretty useful!'

##Installation

npm install bluebird_feathers

About

A toolbelt of additional promise functions with a focus on array and object methods. Currently bluebird only.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0