* Checks if `value` is an `arguments` object. * * @static * @memberOf _ * @category Objects * @param {*} value The value to check. * @returns {boolean} Returns `true` if the `value` is an `arguments` object, else `false`. * @example * * (function() { retu
(value)
| 36688 | * // => false |
| 36689 | */ |
| 36690 | function isArguments(value) { |
| 36691 | return value && typeof value == 'object' && typeof value.length == 'number' && |
| 36692 | toString.call(value) == argsClass || false; |
| 36693 | } |
| 36694 | |
| 36695 | /** |
| 36696 | * Checks if `value` is an array. |
no outgoing calls
no test coverage detected