odin-js-fundamentals-part-5/node_modules/has
NetMan 4c89a8ee8c Initial commit 2024-01-11 09:52:05 +01:00
..
src Initial commit 2024-01-11 09:52:05 +01:00
test Initial commit 2024-01-11 09:52:05 +01:00
LICENSE-MIT Initial commit 2024-01-11 09:52:05 +01:00
README.md Initial commit 2024-01-11 09:52:05 +01:00
package.json Initial commit 2024-01-11 09:52:05 +01: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