6 lines
248 B
JavaScript
6 lines
248 B
JavaScript
|
import { operate } from '../util/lift';
|
||
|
import { scanInternals } from './scanInternals';
|
||
|
export function scan(accumulator, seed) {
|
||
|
return operate(scanInternals(accumulator, seed, arguments.length >= 2, true));
|
||
|
}
|
||
|
//# sourceMappingURL=scan.js.map
|