404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.216.194.71: ~ $
var serial = require('../serial.js');

// API
module.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);
}

Filemanager

Name Type Size Permission Actions
abort.js File 497 B 0644
async.js File 599 B 0644
defer.js File 441 B 0644
iterate.js File 1.75 KB 0644
readable_asynckit.js File 1.57 KB 0644
readable_parallel.js File 673 B 0644
readable_serial.js File 655 B 0644
readable_serial_ordered.js File 941 B 0644
state.js File 941 B 0644
streamify.js File 2.89 KB 0644
terminator.js File 533 B 0644