Sign in
cobalt
/
cobalt
/
f9bc0139df6e6eb149345ab9b6ffcc40603fc09f
/
.
/
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
```