source: imaps-frontend/node_modules/asynckit/serial.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

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