Jensen-holm's picture
added baseline stuff for making this a flask app with tailwind
a63e09b
|
raw
history blame
239 Bytes
# 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
```