UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

9 lines (6 loc) 246 B
// `_foldr` : a collection's function // ----------------------------------- import {createReduce} from './_internal'; // The right-associative version of reduce, also known as `foldr` var _foldr = createReduce(-1); export {_foldr as default};