function
util.types.isArgumentsObject
object: unknown
): object is IArguments;
Returns true if the value is an arguments object.
function foo() {
util.types.isArgumentsObject(arguments); // Returns true
}function
Returns true if the value is an arguments object.
function foo() {
util.types.isArgumentsObject(arguments); // Returns true
}