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 : 18.188.80.46
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
async-each /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
39
B
-rw-r--r--
2016-08-24 23:19
CHANGELOG.md
593
B
-rw-r--r--
2016-08-24 23:17
README.md
1.1
KB
-rw-r--r--
2016-08-24 23:21
index.js
1.23
KB
-rw-r--r--
2015-03-24 18:47
package.json
1.41
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# async-each No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach function for JavaScript. We don't need junky 30K async libs. Really. For browsers and node.js. ## Installation * Just include async-each before your scripts. * `npm install async-each` if you’re using node.js. * `bower install async-each` if you’re using [Bower](http://bower.io). ## Usage * `each(array, iterator, callback);` — `Array`, `Function`, `(optional) Function` * `iterator(item, next)` receives current item and a callback that will mark the item as done. `next` callback receives optional `error, transformedItem` arguments. * `callback(error, transformedArray)` optionally receives first error and transformed result `Array`. Node.js: ```javascript var each = require('async-each'); each(['a.js', 'b.js', 'c.js'], fs.readFile, function(error, contents) { if (error) console.error(error); console.log('Contents for a, b and c:', contents); }); ``` Browser: ```javascript window.asyncEach(list, fn, callback); ``` ## License [The MIT License](https://raw.githubusercontent.com/paulmillr/mit/master/README.md)