add API setup

This commit is contained in:
Sem
2023-05-25 09:27:21 +00:00
parent d180392666
commit db3fde448a
693 changed files with 105277 additions and 1 deletions

18
api/node_modules/has/README.md generated vendored Normal file
View File

@@ -0,0 +1,18 @@
# 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
```