time-to-botec/js/node_modules/@stdlib/assert/is-arguments/docs/repl.txt

26 lines
425 B
Plaintext
Raw Normal View History

{{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
--------