• File: README.md
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/has/README.md
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 239 bytes
  • MIME-type: text/plain
  • Charset: utf-8
# 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
```