Checks if the given value is an arguments object.
This function tests whether the provided value is an arguments object or not.
It returns true
if the value is an arguments object, and false
otherwise.
This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to an arguments object.
Optional
value: unknownThe value to test if it is an arguments object.
true
if the value is an arguments, false
otherwise.
Alias