setup-node/node_modules/has/README.md
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04:00

19 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
```