provider/node_modules/has
Nik Dement'ev b2743b6469
fix: update lint
2020-11-06 14:38:38 +03:00
..
src fix: update lint 2020-11-06 14:38:38 +03:00
test fix: update lint 2020-11-06 14:38:38 +03:00
LICENSE-MIT fix: update lint 2020-11-06 14:38:38 +03:00
README.md fix: update lint 2020-11-06 14:38:38 +03:00
package.json fix: update lint 2020-11-06 14:38:38 +03:00

README.md

has

Object.prototype.hasOwnProperty.call shortcut

Installation

npm install --save has

Usage

var has = require('has');

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