Skip to content

Instantly share code, notes, and snippets.

View VorticonCmdr's full-sized avatar
🎯
Focusing

Valentin VorticonCmdr

🎯
Focusing
View GitHub Profile
var depth = parseInt(prompt("Please enter the scraping depth (we recommend between 1 to 3):", "2"));
if(!Number.isInteger(depth) || depth < 1) {
alert("Invalid depth! Setting depth to default (2).");
depth = 2;
}
var count = 1;
async function start() {