projecte_ionic/node_modules/has/README.md
2022-02-09 18:30:03 +01: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
```