trt
This commit is contained in:
@ -1611,10 +1611,10 @@ function isInt(value)
|
||||
function isFloat(value)
|
||||
{
|
||||
let num="-1234567890.,"
|
||||
for (i=0;i<value.length;i++)
|
||||
for(let i=0;i<value.length;i++)
|
||||
{
|
||||
let b=true;
|
||||
for(j=0;j<num.length;j++)
|
||||
for(let j=0;j<num.length;j++)
|
||||
{
|
||||
if(value.charAt(i)==num.charAt(j)) b=false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user