ponyfill-array-reduce

1.0.0 • Public • Published

ponyfill-array-reduce

Build Status

ES6 Array.reduce() ponyfill

Ponyfill: A polyfill that doesn't overwrite the native method

Install

$ npm install ponyfill-array-reduce --save

Usage

var reduce = require('ponyfill-array-reduce');
[4, 6, 7, 12].reduce(function(a, b) {
  return a + b;
});
//=> 29
var reduce = require('ponyfill-array-reduce');
[[4, 6], [7, 12]].reduce(function(a, b) {
  return a.concat(b);
});
//=> [4, 6, 7, 12]

License

MIT © Colin Milhench

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    1

Package Sidebar

Install

npm i ponyfill-array-reduce

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • cmilhench