mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 03:19:32 +08:00
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
import createReduce from './_createReduce.js';
|
|
|
|
// **Reduce** builds up a single result from a list of values, aka `inject`,
|
|
// or `foldl`.
|
|
export default createReduce(1);
|