ShenNong/packages/字体精简工具/node_modules/has
2024-06-21 18:44:06 +08:00
..
src 神农首次提交 2024-06-21 18:44:06 +08:00
test 神农首次提交 2024-06-21 18:44:06 +08:00
LICENSE-MIT 神农首次提交 2024-06-21 18:44:06 +08:00
package.json 神农首次提交 2024-06-21 18:44:06 +08:00
README.md 神农首次提交 2024-06-21 18:44:06 +08:00

has

Object.prototype.hasOwnProperty.call shortcut

Installation

npm install --save has

Usage

var has = require('has');

has({}, 'hasOwnProperty'); // false
has(Object.prototype, 'hasOwnProperty'); // true