Skip to content

Instantly share code, notes, and snippets.

@krusty
Created March 21, 2012 16:54
Show Gist options
  • Save krusty/2149484 to your computer and use it in GitHub Desktop.
Save krusty/2149484 to your computer and use it in GitHub Desktop.
apply_to_f(f, funcs) {
return function () {
var a = arguments;
return f(
_.map(funcs, function(h) {
return h(a);
});
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment