Skip to content

Instantly share code, notes, and snippets.

@joshj
Forked from nathansmith/parseint.js
Created February 3, 2012 16:54
Show Gist options
  • Save joshj/1731103 to your computer and use it in GitHub Desktop.
Save joshj/1731103 to your computer and use it in GitHub Desktop.
Makes parseInt have default radix of 10.
// JSLint:
/*global window, _parseInt, parseInt*/
// Conditionally check value, in case
// future implementations of parseInt
// provide native base-10 by default.
if (window.parseInt('09') === 0) {
window._parseInt = window.parseInt;
window.parseInt = function(str, radix) {
return window._parseInt(str, radix || 10);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment