wishthis/node_modules/has
2022-04-08 12:55:35 +02:00
..
src
test
LICENSE-MIT
package.json
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