Skip to content

Instantly share code, notes, and snippets.

@jwulf
Created March 6, 2018 22:23
Show Gist options
  • Select an option

  • Save jwulf/2d8dffd773ddbcdf38499596b3cb5b3f to your computer and use it in GitHub Desktop.

Select an option

Save jwulf/2d8dffd773ddbcdf38499596b3cb5b3f to your computer and use it in GitHub Desktop.
Lodash add in ES5
var createMathOperation = require('./_createMathOperation');
var add = createMathOperation(function(augend, addend) {
return augend + addend;
}, 0);
module.exports = add;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment