4.17.11
3.10.1
2.4.2
1.3.1

_.isArguments(value)

Checks if value is likely an arguments object.

Since

0.1.0

Arguments

argument
value
type
*
description
The value to check.

Returns

(array)

Example

_.isArguments(
  (function () {
    return arguments;
  })()
);
// => true

_.isArguments([1, 2, 3]);
// => false
_.isArguments(
  (function () {
    return arguments;
  })()
);
// => true

_.isArguments([1, 2, 3]);
// => false