Urara-Blog/node_modules/.pnpm-store/v3/files/30/5263898c4fb3b030f931727791fa21d68ccc089b1f9cd5ec4d3b4de86d99d5630b73840e09af73fccc64e8d04cd2a009b246def90c15de993c6e6b6b5cdad1
2022-08-14 01:14:53 +08:00

18 lines
239 B
Text

# 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
```