reduce.js 259 B

123456
  1. import { scanInternals } from './scanInternals';
  2. import { operate } from '../util/lift';
  3. export function reduce(accumulator, seed) {
  4. return operate(scanInternals(accumulator, seed, arguments.length >= 2, false, true));
  5. }
  6. //# sourceMappingURL=reduce.js.map