|
@ -14,10 +14,7 @@ function isDigit(c) { |
|
|
if (isNaN(code)) { |
|
|
if (isNaN(code)) { |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
if ((47 < code) && (code < 58)) { |
|
|
return (47 < code) && (code < 58) |
|
|
return true; |
|
|
|
|
|
} |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function isWhitespace(c) { |
|
|
function isWhitespace(c) { |
|
|