oef/node_modules/has
2019-11-04 15:00:46 +01:00
..
src First commit 2019-11-04 15:00:46 +01:00
test First commit 2019-11-04 15:00:46 +01:00
LICENSE-MIT First commit 2019-11-04 15:00:46 +01:00
package.json First commit 2019-11-04 15:00:46 +01:00
README.md First commit 2019-11-04 15:00:46 +01: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