Skip to content

Instantly share code, notes, and snippets.

@darkone23
Last active December 27, 2015 04:59
Show Gist options
  • Save darkone23/7270937 to your computer and use it in GitHub Desktop.
Save darkone23/7270937 to your computer and use it in GitHub Desktop.
proxy fn
function proxy(methodName) {
return function(s) {
return s[methodName].apply(this, arguments);
}
}
console.log([1,2,3].map(proxy("toString")));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment