9 lines
295 B
JavaScript
9 lines
295 B
JavaScript
// xDef, 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 xDef()
|
|
{
|
|
for(var i=0; i<arguments.length; ++i){if(typeof(arguments[i])=='undefined') return false;}
|
|
return true;
|
|
}
|