Closed avatarkava closed 9 years ago
Starting bit here w/ help from @omfgitsasalmon
(function() { function deleteFriends(id, timeout) { setTimeout(function() { $.ajax({ type: 'DELETE', url: 'https://plug.dj/_/friends/' + id }).done(function(msg) { console.log(msg); }); }, timeout); } var friends = [6062213, 5508071]; for (var i in friends) { deleteFriends(friends[i], 500); } })();
Not a feature of dubtrack
Starting bit here w/ help from @omfgitsasalmon