Advertisement
mikembley

Check Fake Profile

Dec 5th, 2020
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var checkInterval = 1000; //Milliseconds
  2.  
  3. // Run checkProfile function every checkInterval
  4. var timer = setInterval(checkProfile, checkInterval);
  5.  
  6. function checkProfile() {
  7.     if( profileArray.length >= 7 ) {
  8.         console.log("Found fake profile");
  9.     }
  10.     else {
  11.         console.log("Found real profile");
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement