when-all
v0.4.8
Published
normalize an object/array where some values may be wrapped in Results
Downloads
5
Readme
when-all
normalize an object/array where some value may be wrapped in Results
Installation
$ {package mananger} install jkroso/when-all
With npm
$ npm install --save when-all
then in your app:
var all = require('when-all')
API
all(x)
Create a Result for a new x
with all values lifted out of their Results
all([
getPage('google.com'),
getPage('google.co.nz')
]).then(compare)
all({
usa: getPage('google.com'),
nz: getPage('google.co.nz')
}).then(compare)
Example
You could decorate a function so it can take Results as arguments.
var all = require('when-all')
function decorate(fn) {
return function(){
var self = this
return all(arguments).then(function(args){
return fn.apply(self, args)
})
}
}
var asyncCompare = decorate(compare)
asyncCompare(
getPage('google.com'),
getPage('google.co.nz')
)
Running the tests
$ make
Then open your browser to.