Skip to content

Instantly share code, notes, and snippets.

@mmomtchev
Last active June 13, 2020 09:53
Show Gist options
  • Save mmomtchev/0357617527bbcb1bdf3e4065450d1f2e to your computer and use it in GitHub Desktop.
Save mmomtchev/0357617527bbcb1bdf3e4065450d1f2e to your computer and use it in GitHub Desktop.
for (let url of urls) {
try {
const html = await download(url);
data[url] = parse(html);
} catch (e) {
console.error(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment