Given input's prototype comes directly from Object.
input
isPrototypeOfObject({}); // trueisPrototypeOfObject(/./); // false Copy
isPrototypeOfObject({}); // trueisPrototypeOfObject(/./); // false
true if the given value is an object inheriting directly from Object, false otherwise.
true
Object
false
Given
input
's prototype comes directly from Object.Example