Skip to content

Instantly share code, notes, and snippets.

@yvesvanbroekhoven
Created October 24, 2013 12:39
Show Gist options
  • Save yvesvanbroekhoven/7136487 to your computer and use it in GitHub Desktop.
Save yvesvanbroekhoven/7136487 to your computer and use it in GitHub Desktop.
JS context bind
var __bind = function(fn, me) {
return function() { return fn.apply(me, arguments); };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment