({ forumTopicId, title = '' }: GuideData)
| 9 | } |
| 10 | |
| 11 | export function getGuideUrl({ forumTopicId, title = '' }: GuideData): string { |
| 12 | title = encodeURIComponent(title); |
| 13 | return forumTopicId |
| 14 | ? `https://forum.freecodecamp.org/t/${forumTopicId}` |
| 15 | : `${forumLocation}/search?q=${title}%20in%3Atitle%20order%3Aviews`; |
| 16 | } |
| 17 | |
| 18 | export function isGoodXHRStatus(status?: string): boolean { |
| 19 | if (!status) return false; |
no outgoing calls
no test coverage detected