first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

21
build/node_modules/infinity-agent/readme.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# infinity-agent [![Build Status](https://travis-ci.org/floatdrop/infinity-agent.svg?branch=master)](https://travis-ci.org/floatdrop/infinity-agent)
Node-core HTTP Agent for userland.
## Usage
```js
var infinityAgent = require('infinity-agent');
var http = require('http');
var https = require('https');
http.get('http://google.com', {agent: infinityAgent.http.globalAgent});
https.get('http://google.com', {agent: infinityAgent.https.globalAgent});
```
This package is a mirror of the Agent class in Node-core.
## License
MIT © [Vsevolod Strukchinsky](floatdrop@gmail.com)