hensei-web/node_modules/has
2020-09-11 06:44:42 -07:00
..
src First commit 2020-09-11 06:44:42 -07:00
test First commit 2020-09-11 06:44:42 -07:00
LICENSE-MIT First commit 2020-09-11 06:44:42 -07:00
package.json First commit 2020-09-11 06:44:42 -07:00
README.md First commit 2020-09-11 06:44:42 -07: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