Skip to content

Instantly share code, notes, and snippets.

@SimonRichardson
Created April 9, 2013 10:26
Show Gist options
  • Save SimonRichardson/5344685 to your computer and use it in GitHub Desktop.
Save SimonRichardson/5344685 to your computer and use it in GitHub Desktop.
Got this working now so you can pass wildcards to the carries function.
var a = function(value1, value2, value3) {
return value1 + value2 + value3;
}.carries(1, _, _)(2)(3); // Traces 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment