promise-reduce
Reduce an array and return a Promise
Last updated 9 years ago by yoshuawuyts .
MIT · Repository · Bugs · Original npm
$ cnpm install promise-reduce 
SYNC missed versions from official npm registry.

promise-reduce

NPM version build status Test coverage Downloads

Reduce an array and return a Promise.

Installation

$ npm install promise-reduce

Usage

const reduce = require('promise-reduce')

Promise.resolve([1, 2, 3])
  .then(reduce((prev, next) => prev + next), 0))
// => 6

Why?

This module is basically equivalent to bluebird.reduce, but it's handy to have the one function you need instead of a kitchen sink. Modularity! Especially handy if you're serving to the browser and need to reduce your javascript bundle size.

Works great in the browser with browserify!

See Also

License

MIT

Current Tags

  • 2.1.0                                ...           latest (9 years ago)

1 Versions

  • 2.1.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (6)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org