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.util.isarray/.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.util.isarray/.jscsrc generated vendored Normal file
View file

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

29
node_modules/async.util.isarray/.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
}
}

3
node_modules/async.util.isarray/.npmignore generated vendored Normal file
View file

@ -0,0 +1,3 @@
.DS_Store
node_modules
npm-debug.log

15
node_modules/async.util.isarray/README.md generated vendored Normal file
View file

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

5
node_modules/async.util.isarray/index.js generated vendored Normal file
View file

@ -0,0 +1,5 @@
'use strict';
module.exports = Array.isArray || function isArray(obj) {
return Object.prototype.toString.call(obj) === '[object Array]';
};

17
node_modules/async.util.isarray/package.json generated vendored Normal file
View file

@ -0,0 +1,17 @@
{
"name": "async.util.isarray",
"description": "async isarrayhelper method as module.",
"main": "./index.js",
"repository": "async-js/async.util",
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"version": "0.5.2",
"license": "MIT",
"keywords": [
"async.util",
"isarray"
]
}