urltomarkdown/node_modules/has
Lee Hanken ca3866eae3 added unit tests 2022-12-23 12:03:25 +00:00
..
src added unit tests 2022-12-23 12:03:25 +00:00
test added unit tests 2022-12-23 12:03:25 +00:00
LICENSE-MIT added unit tests 2022-12-23 12:03:25 +00:00
README.md added unit tests 2022-12-23 12:03:25 +00:00
package.json added unit tests 2022-12-23 12:03:25 +00: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