Files
lsp/node_modules/has/README.md
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

19 lines
239 B
Markdown

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