| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| src/ | 2023-06-01 15:53 | - | ||
| test/ | 2023-06-01 15:53 | - | ||
| package.json | 2023-06-01 15:53 | 1.0K | 2324c9f added npm start script [كارل مبارك] | |
| LICENSE-MIT | 2023-06-01 15:53 | 1.0K | ||
| README.md | 2023-06-01 15:53 | 239 | 9b1f1b9 rm old utils [كارل مبارك] |
# 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
```