PIbd-22.-Stroev-V.M.-Intern.../Lab2/node_modules/has/README.md
2023-10-28 00:49:09 +03: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
```