Skip to content

Instantly share code, notes, and snippets.

@dewey92
Created April 18, 2017 14:24
Show Gist options
  • Save dewey92/44ccf282d1971f3fe771c2fd1443461b to your computer and use it in GitHub Desktop.
Save dewey92/44ccf282d1971f3fe771c2fd1443461b to your computer and use it in GitHub Desktop.
const reduce = (fn, init, arr) => {
const [head, ...tail] = arr
if (tail[0] === undefined) return fn(init, head)
return reduce(fn, fn(init, head), tail)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment