(link)
| 209 | } |
| 210 | |
| 211 | export function optionToCombined(link) { |
| 212 | if (!link) return null; |
| 213 | if (link.custom) return link; |
| 214 | return getQuicklinks().find(el => el.name === link); |
| 215 | } |
| 216 | |
| 217 | export async function activeLinks( |
| 218 | type: 'anime' | 'manga', |
no test coverage detected