source: trip-planner-front/node_modules/asynckit/lib/readable_serial.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 655 bytes
Line 
1var serial = require('../serial.js');
2
3// API
4module.exports = ReadableSerial;
5
6/**
7 * Streaming wrapper to `asynckit.serial`
8 *
9 * @param {array|object} list - array or object (named list) to iterate over
10 * @param {function} iterator - iterator to run
11 * @param {function} callback - invoked when all elements processed
12 * @returns {stream.Readable#}
13 */
14function ReadableSerial(list, iterator, callback)
15{
16 if (!(this instanceof ReadableSerial))
17 {
18 return new ReadableSerial(list, iterator, callback);
19 }
20
21 // turn on object mode
22 ReadableSerial.super_.call(this, {objectMode: true});
23
24 this._start(serial, list, iterator, callback);
25}
Note: See TracBrowser for help on using the repository browser.