Checks if value is likely an arguments object.
value
arguments
1.0.0
isArguments(function() { return arguments; }());// => true Copy
isArguments(function() { return arguments; }());// => true
isArguments([1, 2, 3]);// => false Copy
isArguments([1, 2, 3]);// => false
Checks if
value
is likely anarguments
object.