Checks if the given value is a prototype.
The type of the value to check.
The value to check.
A boolean indicating whether the value is a prototype.
isPrototype({});;//=> falseisPrototype(Object.getPrototypeOf({}));;//=> true Copy
isPrototype({});;//=> falseisPrototype(Object.getPrototypeOf({}));;//=> true
Generated using TypeDoc
Checks if the given value is a prototype.