[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]src/2023-10-19 15:45 -  
[DIR]test/2023-10-19 15:45 -  
[   ]LICENSE-MIT2023-10-19 15:45 1.0Kf0d2fc9 test post-receive hook [كارل مبارك]
[TXT]README.md2023-10-19 15:45 239 15de0e0 styling, texts [كارل مبارك]
[   ]package.json2023-10-19 15:45 956 120707f added node version q18.16 to dependincies [كارل مبارك]
# 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
```