[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]src/2025-03-12 08:59 -  
[DIR]test/2025-03-12 08:59 -  
[   ]LICENSE-MIT2025-03-12 08:59 1.0K 
[TXT]README.md2025-03-12 08:59 239  
[   ]package.json2025-03-12 08:59 1.0K 
# 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
```