Loading...
function timeout(time) { return new Promise((resolve) => { setTimeout(() => { resolve(); }, time) }) } class SuperTask { constructor(parallelCount = 2)...