()
| 58 | |
| 59 | // Function to retrieve all mentions |
| 60 | async function getAllMentions() { |
| 61 | try { |
| 62 | const data = loadMentionData(); |
| 63 | console.log("All mentions:", data); |
| 64 | return data; |
| 65 | } catch (error) { |
| 66 | console.error("Error while retrieving all mentions:", error); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | // Function to remove a mention from the list |
| 71 | async function removeFromMentionList(url) { |
nothing calls this directly
no test coverage detected