Skip to main content
function isArgumentsObject
isArgumentsObject(object: unknown): object is IArguments
Deprecated

Returns true if the value is an arguments object.

function foo() {
  util.types.isArgumentsObject(arguments);  // Returns true
}

Parameters

object: unknown

Return Type

object is IArguments
Back to top