Wildcard type guard that always succeeds.
Mainly intended as a wildcard predicate in isObject open templates to accept any extra properties.
isObject(value, { required: isString, [key]: isAny }); // accept any extra properties Copy
isObject(value, { required: isString, [key]: isAny }); // accept any extra properties
The value to check
Always true
true
Wildcard type guard that always succeeds.
Mainly intended as a wildcard predicate in isObject open templates to accept any extra properties.