Sign in
cobalt
/
cobalt
/
edf9f4e573e100a6e6c9631fa7b3eef33f67490a
/
.
/
src
/
third_party
/
devtools
/
node_modules
/
has
/
README.md
blob: 635e3a4baab00b59b15bcd7f254f51286d9688f5 [
file
] [
log
] [
blame
] [
view
]
# 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
```