芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/ext/node_modules/type/docs/prototype.md
# 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 ```