source: node_modules/asynckit/lib/readable_serial.js@ 3a74959

Last change on this file since 3a74959 was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago

Initial commit

  • Property mode set to 100644
File size: 655 bytes
RevLine 
[57e58a3]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.