Skip to main content

isArgumentsObject

function isArgumentsObject
Jump to headingisArgumentsObject(object: unknown): object is IArguments

Returns true if the value is an arguments object.

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

Parameters Jump to heading

Jump to headingobject: unknown

Return Type Jump to heading

object is IArguments
Back to top