Skip to content

Instantly share code, notes, and snippets.

@gempir
Created October 28, 2018 12:21
Show Gist options
  • Save gempir/0ec97f2066dfa9ff683fd4969f639ca0 to your computer and use it in GitHub Desktop.
Save gempir/0ec97f2066dfa9ff683fd4969f639ca0 to your computer and use it in GitHub Desktop.
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