[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]src/2023-06-15 18:19 -  
[DIR]test/2023-06-15 18:19 -  
[   ]LICENSE-MIT1985-10-26 08:15 1.0K 
[TXT]README.md1985-10-26 08:15 239 d7c1522 post receive test [كارل مبارك]
[   ]package.json2023-06-15 18:21 1.9K 
# 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
```