26 lines
425 B
Plaintext
26 lines
425 B
Plaintext
|
|
{{alias}}( value )
|
|
Tests if a value is an arguments object.
|
|
|
|
Parameters
|
|
----------
|
|
value: any
|
|
Value to test.
|
|
|
|
Returns
|
|
-------
|
|
bool: boolean
|
|
Boolean indicating whether value is an arguments object.
|
|
|
|
Examples
|
|
--------
|
|
> function foo() { return arguments; };
|
|
> var bool = {{alias}}( foo() )
|
|
true
|
|
> bool = {{alias}}( [] )
|
|
false
|
|
|
|
See Also
|
|
--------
|
|
|