Update to v13 and add queue and completely change code
This commit is contained in:
parent
dcef23d0ed
commit
55a38726a3
6706 changed files with 424137 additions and 61608 deletions
10
node_modules/async.util.restparam/.editorconfig
generated
vendored
Normal file
10
node_modules/async.util.restparam/.editorconfig
generated
vendored
Normal 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.restparam/.jscsrc
generated
vendored
Normal file
3
node_modules/async.util.restparam/.jscsrc
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"validateIndentation": 4
|
||||
}
|
29
node_modules/async.util.restparam/.jshintrc
generated
vendored
Normal file
29
node_modules/async.util.restparam/.jshintrc
generated
vendored
Normal 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.restparam/.npmignore
generated
vendored
Normal file
3
node_modules/async.util.restparam/.npmignore
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
npm-debug.log
|
15
node_modules/async.util.restparam/README.md
generated
vendored
Normal file
15
node_modules/async.util.restparam/README.md
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
# async.util.restparam
|
||||
|
||||

|
||||
[](https://david-dm.org/async-js/async.util.restparam)
|
||||
[](https://david-dm.org/async-js/async.util.restparam#info=devDependencies)
|
||||
[](https://www.npmjs.org/package/async.util.restparam)
|
||||
[](https://paypal.me/kikobeats)
|
||||
|
||||
> async restparam 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)
|
17
node_modules/async.util.restparam/index.js
generated
vendored
Normal file
17
node_modules/async.util.restparam/index.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
'use strict';
|
||||
module.exports = function restParam(func, startIndex) {
|
||||
startIndex = startIndex == null ? func.length - 1 : +startIndex;
|
||||
return function() {
|
||||
var length = Math.max(arguments.length - startIndex, 0);
|
||||
var rest = new Array(length);
|
||||
for (var index = 0; index < length; index++) {
|
||||
rest[index] = arguments[index + startIndex];
|
||||
}
|
||||
switch (startIndex) {
|
||||
case 0:
|
||||
return func.call(this, rest);
|
||||
case 1:
|
||||
return func.call(this, arguments[0], rest);
|
||||
}
|
||||
};
|
||||
};
|
17
node_modules/async.util.restparam/package.json
generated
vendored
Normal file
17
node_modules/async.util.restparam/package.json
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "async.util.restparam",
|
||||
"description": "async restparamhelper 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",
|
||||
"restparam"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue