This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! SET YOUR TWITTER HANDLE IN THE NEXT LINE! | |
const yourTwitterHandle = "@XXXXXX"; | |
//! days to keep tweets | |
const daysToKeep = 0; | |
// ------------------------------------------------------------------------------- | |
// Random wait time between 0.5 and 1.5 seconds to avoid detection | |
const waitTimeSeconds = () => Math.random() + 0.5; |