Skip to content

Instantly share code, notes, and snippets.

@threedaymonk
Created July 26, 2015 13:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save threedaymonk/1deec29b2f0b29ce55cc to your computer and use it in GitHub Desktop.
Save threedaymonk/1deec29b2f0b29ce55cc to your computer and use it in GitHub Desktop.
if (!Function.prototype.bind) {
Function.prototype.bind = function bind(thisValue){
var func = this;
return function() {
return func.apply(thisValue, arguments);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment