Update to v13 and add queue and completely change code

This commit is contained in:
a 2021-12-06 16:34:00 +01:00
parent dcef23d0ed
commit 55a38726a3
6706 changed files with 424137 additions and 61608 deletions

10
node_modules/async.parallellimit/.editorconfig generated vendored Normal file
View file

@ -0,0 +1,10 @@
# editorconfig.org
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

3
node_modules/async.parallellimit/.jscsrc generated vendored Normal file
View file

@ -0,0 +1,3 @@
{
"validateIndentation": 4
}

29
node_modules/async.parallellimit/.jshintrc generated vendored Normal file
View file

@ -0,0 +1,29 @@
{
// Enforcing options
"eqeqeq": false,
"forin": true,
"indent": 4,
"noarg": true,
"undef": true,
"unused": true,
"trailing": true,
"evil": true,
"laxcomma": true,
// Relaxing options
"onevar": false,
"asi": false,
"eqnull": true,
"expr": false,
"loopfunc": true,
"sub": true,
"browser": true,
"node": true,
"globals": {
"self": true,
"define": true,
"describe": true,
"context": true,
"it": true
}
}

8
node_modules/async.parallellimit/.npmignore generated vendored Normal file
View file

@ -0,0 +1,8 @@
node_modules
dist
perf/versions
nyc_output
coverage
*.log
.DS_Store
npm-debug.log

13
node_modules/async.parallellimit/README.md generated vendored Normal file
View file

@ -0,0 +1,13 @@
# async.parallellimit
![Last version](https://img.shields.io/github/tag/async-js/async.parallellimit.svg?style=flat-square)
[![Dependency status](http://img.shields.io/david/async-js/async.parallellimit.svg?style=flat-square)](https://david-dm.org/async-js/async.parallellimit)
[![Dev Dependencies Status](http://img.shields.io/david/dev/async-js/async.parallellimit.svg?style=flat-square)](https://david-dm.org/async-js/async.parallellimit#info=devDependencies)
[![NPM Status](http://img.shields.io/npm/dm/async.parallellimit.svg?style=flat-square)](https://www.npmjs.org/package/async.parallellimit)
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/kikobeats)
> [async#parallellimit](https://github.com/async-js/async#async.parallellimit) method as module.
## License
MIT © [async-js](https://github.com/async-js)

8
node_modules/async.parallellimit/index.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
'use strict';
var parallel = require('async.util.parallel');
var eachOfLimit = require('async.util.eachoflimit');
module.exports = function parallelLimit(tasks, limit, cb) {
return parallel(eachOfLimit(limit), tasks, cb);
};

21
node_modules/async.parallellimit/package.json generated vendored Normal file
View file

@ -0,0 +1,21 @@
{
"name": "async.parallellimit",
"description": "async parallellimitmethod as module.",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/caolan/async.git"
},
"author": "Caolan McMahon",
"version": "0.5.2",
"license": "MIT",
"dependencies": {
"async.util.eachoflimit": "0.5.2",
"async.util.parallel": "0.5.2"
},
"keywords": [
"async",
"async-modularized",
"parallellimit"
]
}