Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created January 22, 2014 13:21
Show Gist options
  • Save netsuite/8558599 to your computer and use it in GitHub Desktop.
Save netsuite/8558599 to your computer and use it in GitHub Desktop.
js: dot function(prop, obj) with autoCurry
var dot = function (prop, obj) {
return obj[prop];
}.autoCurry();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment