Dotawo/node_modules/has
2020-10-28 23:37:25 +01:00
..
src started work on Russell article 2020-10-28 23:37:25 +01:00
test started work on Russell article 2020-10-28 23:37:25 +01:00
LICENSE-MIT started work on Russell article 2020-10-28 23:37:25 +01:00
package.json started work on Russell article 2020-10-28 23:37:25 +01:00
README.md started work on Russell article 2020-10-28 23:37:25 +01:00

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