Skip to content

Instantly share code, notes, and snippets.

@radist2s
Created April 5, 2015 21:01
Show Gist options
  • Save radist2s/4dfb0640ce94555aa7a8 to your computer and use it in GitHub Desktop.
Save radist2s/4dfb0640ce94555aa7a8 to your computer and use it in GitHub Desktop.
Function.prototype.bind polyfill with underscore _.bind
if (!Function.prototype.bind) {
Function.prototype.bind = function () {
return _.bind.apply(_, [this].concat(_.toArray(arguments)))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment