doc/node_modules/has
2021-05-05 15:50:12 +02:00
..
src Move content to repo root 2021-05-05 15:50:12 +02:00
test Move content to repo root 2021-05-05 15:50:12 +02:00
LICENSE-MIT Move content to repo root 2021-05-05 15:50:12 +02:00
package.json Move content to repo root 2021-05-05 15:50:12 +02:00
README.md Move content to repo root 2021-05-05 15:50:12 +02: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