We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2e3b3b commit 520b254Copy full SHA for 520b254
scripts/JSRootIOEvolution.js
@@ -36,7 +36,8 @@
36
Z_HDRSIZE : 9,
37
Mode : "array", // could be string or array, enable usage of ArrayBuffer in http requests
38
NativeArray : true, // when true, native arrays like Int32Array or Float64Array are used
39
- IsInteger : function(typ) { return ((typ>=this.kChar) && (typ<=this.kCounter)) ||
+ IsInteger : function(typ) { return ((typ>=this.kChar) && (typ<=this.kLong)) ||
40
+ (typ===this.kCounter) ||
41
((typ>=this.kLegacyChar) && (typ<=this.kBool)); },
42
IsNumeric : function(typ) { return (typ>0) && (typ<=this.kBool) && (typ!==this.kCharStar); }
43
0 commit comments