Skip to content

Instantly share code, notes, and snippets.

@stevestreza
Created June 23, 2009 16:36
Show Gist options
  • Select an option

  • Save stevestreza/134663 to your computer and use it in GitHub Desktop.

Select an option

Save stevestreza/134663 to your computer and use it in GitHub Desktop.
(function(){
var oldParseInt = window.parseInt;
window.parseInt = function(val, base){
if(!base) base = 10;
return oldParseInt(val, base);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment