All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._baseIsArguments.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy