···2222 }
2323 });
24242525- // nuke 0 followers accounts, this massively speeds up webload speeds
2626- if (filtered.followersCount === 0) return null;
2525+ // nuke sub 5 followers accounts, this massively speeds up webload speeds
2626+ // there are over 5000 sub 0 follower accounts. and most accounts there
2727+ // are 1500 accounts with less than 5 accounts, most of which have 0 or
2828+ // no posts, or were created but appear to be completely dead
2929+ if (filtered.followersCount <= 5) return null;
27302831 return filtered;
2932 })