setup-node/node_modules/has/README.md
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05:00

18 lines
239 B
Markdown

# has
> Object.prototype.hasOwnProperty.call shortcut
## Installation
```sh
npm install --save has
```
## Usage
```js
var has = require('has');
has({}, 'hasOwnProperty'); // false
has(Object.prototype, 'hasOwnProperty'); // true
```