Files
setup-ruby/node_modules/has/README.md
Stephen Franceschelli 574f83ab4c Fixes.
2019-07-15 13:45:00 -04: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
```