EXPLORE
X
Search
function consumeContent(reels) {
  reels.forEach(post => {
    let reaction;
    if (feelsRight(post)) {
      reaction = shareWithoutFactChecking(post);
    } else {
      reaction = ignoreOrReject(post);
    }
    console.log(`Reacted: ${reaction}`);
  });
}

consumeContent(['news', 'rumor', 'propaganda']);
TEXT
26 words 310B Read on Zora
Read more
📶 0 comments
See all comments

Mint