Well, I'm using this one I made...
It's been working so far:
function checkNumber(value) {
if ( value % 1 == 0 )
return true;
else
return false;
}
If you spot any problem with it, tell me, please.
Like any numbers should be divisible by one with nothing left, I figured I could just use the module, and if you try dividing a string into a number the result wouldn't be that. So.