[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]src/2023-06-01 15:53 -  
[DIR]test/2023-06-01 15:53 -  
[   ]LICENSE-MIT2023-06-01 15:53 1.0K 
[TXT]README.md2023-06-01 15:53 239 9b1f1b9 rm old utils [كارل مبارك]
[   ]package.json2023-06-01 15:53 1.0K2324c9f added npm start script [كارل مبارك]
# 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
```