source: trip-planner-front/node_modules/asynckit/serial.js@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 501 bytes
Line 
1var serialOrdered = require('./serialOrdered.js');
2
3// Public API
4module.exports = serial;
5
6/**
7 * Runs iterator over provided array elements in series
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 {function} - jobs terminator
13 */
14function serial(list, iterator, callback)
15{
16 return serialOrdered(list, iterator, null, callback);
17}
Note: See TracBrowser for help on using the repository browser.