Skip to content

Instantly share code, notes, and snippets.

@brianium
Created March 13, 2012 02:39
Show Gist options
  • Save brianium/2026243 to your computer and use it in GitHub Desktop.
Save brianium/2026243 to your computer and use it in GitHub Desktop.
ecmascript 3 bind
function bind(f,o) {
if(f.bind) return f.bind(o);
else return function() {
return f.apply(o, arguments);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment