esnext.iterator.reduce.js 938 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. // https://github.com/tc39/proposal-iterator-helpers
  3. var $ = require('../internals/export');
  4. var iterate = require('../internals/iterate');
  5. var aCallable = require('../internals/a-callable');
  6. var getIteratorDirect = require('../internals/get-iterator-direct');
  7. var $TypeError = TypeError;
  8. $({ target: 'Iterator', proto: true, real: true, forced: true }, {
  9. reduce: function reduce(reducer /* , initialValue */) {
  10. var record = getIteratorDirect(this);
  11. aCallable(reducer);
  12. var noInitial = arguments.length < 2;
  13. var accumulator = noInitial ? undefined : arguments[1];
  14. iterate(record, function (value) {
  15. if (noInitial) {
  16. noInitial = false;
  17. accumulator = value;
  18. } else {
  19. accumulator = reducer(accumulator, value);
  20. }
  21. }, { IS_RECORD: true });
  22. if (noInitial) throw $TypeError('Reduce of empty iterator with no initial value');
  23. return accumulator;
  24. }
  25. });