frontend/.pnpm-store/v3/files/e6/5a57b6e9dbe358a539bf37ddca4e0f1280a771890ad3f583182943a6c309a2e7464d7618e58c6dc10d676e765840856c4d099e5f136e053c86c0c7c49eb8bd

16 lines
304 B
Plaintext

# Prototype
Some constructor's `prototype` property
## `prototype/is`
Confirms if given object serves as a _prototype_ property
```javascript
const isPrototype = require("type/prototype/is");
isPrototype({}); // false
isPrototype(Object.prototype); // true
isPrototype(Array.prototype); // true
```