isArguments()

Determines if the given value is of type Arguments as specified by typeOf().

This function is valid in v2.8.0 to v2.24.3. This function has been downloaded 63 times.

Parameter

{*} value
Value to see if it is of type Arguments according to typeOf().

Returns

{boolean}
true if value is of type Arguments according to typeOf(). Otherwise false.

Required Functions

This function directly requires the following functions which are included automatically:

  • isArray()
    Determines if the given value is of type Array as specified by typeOf().
  • isBoolean()
    Determines if the given value is of type Boolean as specified by typeOf().
  • isDate()
    Determines if the given value is of type Date as specified by typeOf().
  • isFunction()
    Determines if the given value is of type Function as specified by typeOf().
  • isNull()
    Determines if the given value is null as specified by typeOf().
  • isNumber()
    Determines if the given value is of type Number as specified by typeOf().
  • isObject()
    Determines if the given value is of type Object as specified by typeOf().
  • isRegExp()
    Determines if the given value is of type RegExp as specified by typeOf().
  • isString()
    Determines if the given value is of type String as specified by typeOf().
  • isUndefined()
    Determines if the given value is undefined as specified by typeOf().
  • isUnknown()
    Determines if the given value is Unknown as specified by typeOf().
  • typeOf()
    Either gets the type of a value or adds a constructor registering its custom type name.

Requiring Functions

This function is directly required by the following functions:

  • isArray()
    Determines if the given value is of type Array as specified by typeOf().
  • isBoolean()
    Determines if the given value is of type Boolean as specified by typeOf().
  • isDate()
    Determines if the given value is of type Date as specified by typeOf().
  • isFunction()
    Determines if the given value is of type Function as specified by typeOf().
  • isNull()
    Determines if the given value is null as specified by typeOf().
  • isNumber()
    Determines if the given value is of type Number as specified by typeOf().
  • isObject()
    Determines if the given value is of type Object as specified by typeOf().
  • isRegExp()
    Determines if the given value is of type RegExp as specified by typeOf().
  • isString()
    Determines if the given value is of type String as specified by typeOf().
  • isUndefined()
    Determines if the given value is undefined as specified by typeOf().
  • isUnknown()
    Determines if the given value is Unknown as specified by typeOf().