()
| 203 | } |
| 204 | |
| 205 | export function combinedLinks() { |
| 206 | const links = api.settings.get('quicklinks'); |
| 207 | const comb = links.map(el => optionToCombined(el)).filter(el => el); |
| 208 | return JSON.parse(JSON.stringify(comb)); |
| 209 | } |
| 210 | |
| 211 | export function optionToCombined(link) { |
| 212 | if (!link) return null; |
no test coverage detected