Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.142.144.163
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
batch /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
29
B
-rw-r--r--
2017-03-25 17:42
History.md
1.62
KB
-rw-r--r--
2017-05-16 21:10
LICENSE
1.07
KB
-rw-r--r--
2017-03-25 18:57
Makefile
69
B
-rw-r--r--
2017-03-25 17:42
Readme.md
731
B
-rw-r--r--
2017-05-16 21:09
component.json
299
B
-rw-r--r--
2017-05-16 21:10
index.js
2.87
KB
-rw-r--r--
2017-05-16 21:05
package.json
1.22
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# batch Simple async batch with concurrency control and progress reporting. ## Installation ``` $ npm install batch ``` ## API ```js var Batch = require('batch') , batch = new Batch; batch.concurrency(4); ids.forEach(function(id){ batch.push(function(done){ User.get(id, done); }); }); batch.on('progress', function(e){ }); batch.end(function(err, users){ }); ``` ### Progress events Contain the "job" index, response value, duration information, and completion data. ``` { index: 1, value: 'bar', pending: 2, total: 3, complete: 2, percent: 66, start: Thu Oct 04 2012 12:25:53 GMT-0700 (PDT), end: Thu Oct 04 2012 12:25:53 GMT-0700 (PDT), duration: 0 } ``` ## License [MIT](LICENSE)