I am a developer, participant in Codeheat 2017-2018 & Google Code-In Mentor 2017-18. I have been active in FOSSASIA since August 2017.I contributed to various projects. I was a part of them from the very start.
This file contains hidden or 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
| (() => { | |
| let count = 0; | |
| function getAllButtons() { | |
| return document.querySelectorAll('button.is-following') || []; | |
| } | |
| async function unfollowAll() { | |
| const buttons = getAllButtons(); |
