···22 }
23 });
2425- // nuke 0 followers accounts, this massively speeds up webload speeds
26- if (filtered.followersCount === 0) return null;
0002728 return filtered;
29 })
···22 }
23 });
2425+ // nuke sub 5 followers accounts, this massively speeds up webload speeds
26+ // there are over 5000 sub 0 follower accounts. and most accounts there
27+ // are 1500 accounts with less than 5 accounts, most of which have 0 or
28+ // no posts, or were created but appear to be completely dead
29+ if (filtered.followersCount <= 5) return null;
3031 return filtered;
32 })