backoffice/node_modules/has
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
src first commit 2020-02-06 10:09:39 +00:00
test first commit 2020-02-06 10:09:39 +00:00
.jshintrc first commit 2020-02-06 10:09:39 +00:00
.npmignore first commit 2020-02-06 10:09:39 +00:00
LICENSE-MIT first commit 2020-02-06 10:09:39 +00:00
README.mkd first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00

README.mkd

has

Object.prototype.hasOwnProperty.call shortcut

Installation

npm install --save has

Usage

var has = require('has');

has({}, 'hasOwnProperty'); // false
has(Object.prototype, 'hasOwnProperty'); // true