iter-tools
Version:
The iterable toolbox
107 lines (83 loc) • 2.9 kB
JavaScript
var _regeneratorRuntime = require("@babel/runtime/regenerator");
var _asyncToGenerator = require("@babel/runtime/helpers/asyncToGenerator");
var _asyncIterator = require("@babel/runtime/helpers/asyncIterator");
var _require = require('../../internal/async-iterable.js'),
asyncIterableCurry = _require.asyncIterableCurry;
function __asyncForEach(_x, _x2) {
return _asyncForEach.apply(this, arguments);
}
function _asyncForEach() {
_asyncForEach = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(iterable, callback) {
var c, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, _value, value;
return _regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
c = 0;
_iteratorNormalCompletion = true;
_didIteratorError = false;
_context.prev = 3;
_iterator = _asyncIterator(iterable);
case 5:
_context.next = 7;
return _iterator.next();
case 7:
_step = _context.sent;
_iteratorNormalCompletion = _step.done;
_context.next = 11;
return _step.value;
case 11:
_value = _context.sent;
if (_iteratorNormalCompletion) {
_context.next = 19;
break;
}
value = _value;
_context.next = 16;
return callback(value, c++);
case 16:
_iteratorNormalCompletion = true;
_context.next = 5;
break;
case 19:
_context.next = 25;
break;
case 21:
_context.prev = 21;
_context.t0 = _context["catch"](3);
_didIteratorError = true;
_iteratorError = _context.t0;
case 25:
_context.prev = 25;
_context.prev = 26;
if (!(!_iteratorNormalCompletion && _iterator["return"] != null)) {
_context.next = 30;
break;
}
_context.next = 30;
return _iterator["return"]();
case 30:
_context.prev = 30;
if (!_didIteratorError) {
_context.next = 33;
break;
}
throw _iteratorError;
case 33:
return _context.finish(30);
case 34:
return _context.finish(25);
case 35:
case "end":
return _context.stop();
}
}
}, _callee, null, [[3, 21, 25, 35], [26,, 30, 34]]);
}));
return _asyncForEach.apply(this, arguments);
}
exports.__asyncForEach = __asyncForEach;
var asyncForEach = /*#__PURE__*/asyncIterableCurry(__asyncForEach, {
reduces: true
});
exports.asyncForEach = asyncForEach;