• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Sep-2020-

src/H03-May-2022-

test/H03-May-2022-

LICENSE-MITH A D26-Oct-19851 KiB2319

README.mdH A D26-Oct-1985239 1912

package.jsonH A D20-Sep-20201.3 KiB6059

README.md

1# has
2
3> Object.prototype.hasOwnProperty.call shortcut
4
5## Installation
6
7```sh
8npm install --save has
9```
10
11## Usage
12
13```js
14var has = require('has');
15
16has({}, 'hasOwnProperty'); // false
17has(Object.prototype, 'hasOwnProperty'); // true
18```
19