[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]src/2023-06-13 07:16 -  
[DIR]test/2023-06-13 07:16 -  
[   ]LICENSE-MIT1985-10-26 08:15 1.0K 
[TXT]README.md1985-10-26 08:15 239 d768d73 docs [كارل مبارك]
[   ]package.json2023-06-13 07:17 2.0K3e510ca test new git [كارل مبارك]
# 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
```