| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| src/ | 2023-06-09 12:49 | - | ||
| test/ | 2023-06-09 12:49 | - | ||
| LICENSE-MIT | 1985-10-26 08:15 | 1.0K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] | |
| package.json | 2023-06-09 12:49 | 1.8K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] | |
| README.md | 1985-10-26 08:15 | 239 | f12eb36 documentaiton updates [كارل مبارك] |
# 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
```