mirror of https://github.com/tc39/test262.git
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
|
//-----------------------------------------------------------------------------
|
||
|
function fnExists(/*arguments*/) {
|
||
|
for (var i = 0; i < arguments.length; i++) {
|
||
|
if (typeof (arguments[i]) !== "function") return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|