StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/async-each-series/index.js

29 lines
642 B

module.exports = function (arr, iterator, callback) {
callback = callback || function () {};
if (!Array.isArray(arr) || !arr.length) {
return callback();
}
var completed = 0;
var iterate = function () {
iterator(arr[completed], function (err) {
if (err) {
callback(err);
callback = function () {};
}
else {
++completed;
if (completed >= arr.length) { callback(); }
else { nextTick(iterate); }
}
});
};
iterate();
};
function nextTick (cb) {
if (typeof setImmediate === 'function') {
setImmediate(cb);
} else {
process.nextTick(cb);
}
}