File Explorer

/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 /.

0 dirs
11 files
readable_serial.js655 B · 26 lines
var serial = require('../serial.js'); // APImodule.exports = ReadableSerial; /** * Streaming wrapper to `asynckit.serial` * * @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 ReadableSerial(list, iterator, callback){  if (!(this instanceof ReadableSerial))  {    return new ReadableSerial(list, iterator, callback);  }   // turn on object mode  ReadableSerial.super_.call(this, {objectMode: true});   this._start(serial, list, iterator, callback);}