9 lines
315 B
JavaScript
9 lines
315 B
JavaScript
// xNum, Copyright 2001-2005 Michael Foster (Cross-Browser.com)
|
|
// Part of X, a Cross-Browser Javascript Library, Distributed under the terms of the GNU LGPL
|
|
|
|
function xNum()
|
|
{
|
|
for(var i=0; i<arguments.length; ++i){if(isNaN(arguments[i]) || typeof(arguments[i])!='number') return false;}
|
|
return true;
|
|
}
|