doWhilst.js

  1. import onlyOnce from './internal/onlyOnce.js'
  2. import wrapAsync from './internal/wrapAsync.js'
  3. import awaitify from './internal/awaitify.js'
  4. /**
  5. * The post-check version of [`whilst`]{@link module:ControlFlow.whilst}. To reflect the difference in
  6. * the order of operations, the arguments `test` and `iteratee` are switched.
  7. *
  8. * `doWhilst` is to `whilst` as `do while` is to `while` in plain JavaScript.
  9. *
  10. * @name doWhilst
  11. * @static
  12. * @memberOf module:ControlFlow
  13. * @method
  14. * @see [async.whilst]{@link module:ControlFlow.whilst}
  15. * @category Control Flow
  16. * @param {AsyncFunction} iteratee - A function which is called each time `test`
  17. * passes. Invoked with (callback).
  18. * @param {AsyncFunction} test - asynchronous truth test to perform after each
  19. * execution of `iteratee`. Invoked with (...args, callback), where `...args` are the
  20. * non-error args from the previous callback of `iteratee`.
  21. * @param {Function} [callback] - A callback which is called after the test
  22. * function has failed and repeated execution of `iteratee` has stopped.
  23. * `callback` will be passed an error and any arguments passed to the final
  24. * `iteratee`'s callback. Invoked with (err, [results]);
  25. * @returns {Promise} a promise, if no callback is passed
  26. */
  27. function doWhilst(iteratee, test, callback) {
  28. callback = onlyOnce(callback);
  29. var _fn = wrapAsync(iteratee);
  30. var _test = wrapAsync(test);
  31. var results
  32. function next(err, ...args) {
  33. if (err) return callback(err);
  34. if (err === false) return;
  35. results = args
  36. _test(...args, check);
  37. }
  38. function check(err, truth) {
  39. if (err) return callback(err);
  40. if (err === false) return;
  41. if (!truth) return callback(null, ...results);
  42. _fn(next);
  43. }
  44. return check(null, true);
  45. }
  46. export default awaitify(doWhilst, 3)