-
-
Save joshj/1731103 to your computer and use it in GitHub Desktop.
Makes parseInt have default radix of 10.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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