bakalarska_praca/database/node_modules/has/README.md
2023-05-11 21:57:12 +02:00

19 lines
239 B
Markdown
Executable File

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