Files
julia-buildpkg/node_modules/has/README.md
David Anthoff c0c6ce37ca Add node deps
2019-09-14 21:05:22 -07: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
```