File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/asynckit/lib

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

readable_parallel.js673 B · 26 lines
var parallel = require('../parallel.js'); // APImodule.exports = ReadableParallel; /** * Streaming wrapper to `asynckit.parallel` * * @param   {array|object} list - array or object (named list) to iterate over * @param   {function} iterator - iterator to run * @param   {function} callback - invoked when all elements processed * @returns {stream.Readable#} */function ReadableParallel(list, iterator, callback){  if (!(this instanceof ReadableParallel))  {    return new ReadableParallel(list, iterator, callback);  }   // turn on object mode  ReadableParallel.super_.call(this, {objectMode: true});   this._start(parallel, list, iterator, callback);}