You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
488 B
19 lines
488 B
4 years ago
|
var baseGetTag = require('./_baseGetTag'),
|
||
|
isObjectLike = require('./isObjectLike');
|
||
|
|
||
|
/** `Object#toString` result references. */
|
||
|
var argsTag = '[object Arguments]';
|
||
|
|
||
|
/**
|
||
|
* The base implementation of `_.isArguments`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {*} value The value to check.
|
||
|
* @returns {boolean} Returns `true` if `value` is an `arguments` object,
|
||
|
*/
|
||
|
function baseIsArguments(value) {
|
||
|
return isObjectLike(value) && baseGetTag(value) == argsTag;
|
||
|
}
|
||
|
|
||
|
module.exports = baseIsArguments;
|