mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 13:35:15 +08:00
19 lines
486 B
JavaScript
19 lines
486 B
JavaScript
|
|
import baseGetTag from './_baseGetTag.js';
|
||
|
|
import isObjectLike from './isObjectLike.js';
|
||
|
|
|
||
|
|
/** `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;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default baseIsArguments;
|