Skip to content

Instantly share code, notes, and snippets.

@szmeku
Created November 29, 2016 20:13
Show Gist options
  • Save szmeku/e76e8b9db822149c8b7252974d975cce to your computer and use it in GitHub Desktop.
Save szmeku/e76e8b9db822149c8b7252974d975cce to your computer and use it in GitHub Desktop.
let reduce = function(func, acc, items){
if(items.length === 0){
return acc;
}
return reduce(func, func(acc, R.head(items)) , R.tail(items));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment