FlyUp/packages/字体精简工具/node_modules/has
2024-07-10 18:24:08 +08:00
..
src 增加分享 2024-07-10 18:24:08 +08:00
test 增加分享 2024-07-10 18:24:08 +08:00
LICENSE-MIT 增加分享 2024-07-10 18:24:08 +08:00
package.json 增加分享 2024-07-10 18:24:08 +08:00
README.md 增加分享 2024-07-10 18:24:08 +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