AlkantarClanX12

Your IP : 3.147.60.62


Current Path : /proc/self/root/opt/alt/alt-nodejs10/root/lib/node_modules/npm/node_modules.bundled/has/
Upload File :
Current File : //proc/self/root/opt/alt/alt-nodejs10/root/lib/node_modules/npm/node_modules.bundled/has/README.md

# 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
```