(references: string[])
| 135 | } |
| 136 | |
| 137 | function getUrls(references: string[]) { |
| 138 | return references.filter( |
| 139 | (url) => url.startsWith('https://') || url.startsWith('http://') |
| 140 | ); |
| 141 | } |
| 142 | |
| 143 | function getThreadIds(references: string[]) { |
| 144 | return references.filter( |