diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-10 11:47:00 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-10 11:47:00 -0800 |
commit | 0e32b09c3de18a8f8ee331ac00a6308b94ff9ccb (patch) | |
tree | c7a2b4cc00ae121084fb808551fe753e5da978f4 /src/utility.js | |
parent | 74ad2855886778cf5957a460179b290b928ac994 (diff) |
note for future parsing of i64 consts
Diffstat (limited to 'src/utility.js')
-rw-r--r-- | src/utility.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility.js b/src/utility.js index 1b0a14f3..42c6ca69 100644 --- a/src/utility.js +++ b/src/utility.js @@ -185,7 +185,7 @@ function mergeInto(obj, other) { } function isNumber(x) { - return x == parseFloat(x); + return x == parseFloat(x); // XXX add: || x.match(/^-?\d+(\.\d+)?/); } function isArray(x) { |