internet-programming/lab2/node_modules/has
2023-10-23 13:48:44 +04:00
..
src done 2023-10-23 13:48:44 +04:00
test done 2023-10-23 13:48:44 +04:00
LICENSE-MIT done 2023-10-23 13:48:44 +04:00
package.json done 2023-10-23 13:48:44 +04:00
README.md done 2023-10-23 13:48:44 +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