isNum

isNum(s:String);
Exmples :
var f = new Validate();
	
f.isNum(100);
// return true;
	
f.isNum("ABCDEF);
// return false;