Files
oneclickvirt.github.io/node_modules/has/README.md
spiritlhl 6f5966067d Update
2023-06-20 00:59:07 +00: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
```