Skip to content

Instantly share code, notes, and snippets.

@dormd
Last active August 18, 2019 16:27
Show Gist options
  • Save dormd/8ae2b26bc367b679c385bcbabd33fbe9 to your computer and use it in GitHub Desktop.
Save dormd/8ae2b26bc367b679c385bcbabd33fbe9 to your computer and use it in GitHub Desktop.
function sumBy(items, iteratee) {
const sumByFunc = getSumByFunc(iteratee);
return items.reduce((sum, item) => {
return sum + sumByFunc(item);
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment