Skip to content

Instantly share code, notes, and snippets.

@raine
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raine/55a686f2932b1e4f3f13 to your computer and use it in GitHub Desktop.
Save raine/55a686f2932b1e4f3f13 to your computer and use it in GitHub Desktop.
var R = require('ramda');
var trace = require('treis');
var xs = [1, 2, 3];
function add(a, b) {
return a + b;
}
trace('reduce', R.reduce)(trace(add), 10, xs); // => 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment