Created
October 28, 2018 12:21
-
-
Save gempir/0ec97f2066dfa9ff683fd4969f639ca0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
queue = []; | |
rl.on("line", (link) => { | |
queue.push(link); | |
}); | |
while(true) { | |
if (queue.length === 0) { | |
continue | |
} | |
let link = queue.shift() | |
await download(link); | |
} | |
function download(link) { | |
return new Promise((resolve) => { | |
let file = await fetch(resolve); | |
resolve(link) | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment