schnee effeckt und fehler Korektur

This commit is contained in:
2023-08-14 17:52:24 +02:00
parent 4a843d4936
commit 79af4e9907
6813 changed files with 343821 additions and 356128 deletions

20
node_modules/caw/readme.md generated vendored
View File

@@ -6,41 +6,41 @@
## Install
```
$ npm install --save caw
$ npm install caw
```
## Usage
```js
var caw = require('caw');
var got = require('got');
const caw = require('caw');
const got = require('got');
got('todomvc.com', {
agent: caw()
}, function () {});
}, () => {});
```
## API
### caw(proxy, options)
### caw([proxy], [options])
#### proxy
Type: `string`
Proxy URL.
Proxy URL. If not set, it'll try getting it using [`get-proxy`](https://github.com/kevva/get-proxy).
#### options
Type: `object`
Type: `Object`
Besides the options below, you can pass in options allowed in [tunnel-agent](https://github.com/koichik/node-tunnel).
Besides the options below, you can pass in options allowed in [tunnel-agent](https://github.com/request/tunnel-agent).
##### protocol
Type: `string`
Type: `string`<br>
Default: `http`
Endpoint protocol.
@@ -48,4 +48,4 @@ Endpoint protocol.
## License
MIT © [Kevin Mårtensson](http://github.com/kevva)
MIT © [Kevin Mårtensson](https://github.com/kevva)