UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

12 lines (8 loc) 183 B
import { curry } from './curry' function reduceFn( reducer, acc, list ){ const clone = list.slice() return clone.reduce(reducer, acc) } export const reduce = curry(reduceFn)