InventoryTrack/node_modules/has
2022-11-02 22:16:03 -04:00
..
src First Push 2022-11-02 22:16:03 -04:00
test First Push 2022-11-02 22:16:03 -04:00
LICENSE-MIT First Push 2022-11-02 22:16:03 -04:00
package.json First Push 2022-11-02 22:16:03 -04:00
README.md First Push 2022-11-02 22:16:03 -04: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