(content: string)
| 42 | // no whitespace, no trailing comma/brace that'd be JSON structure. |
| 43 | const URL_IN_JSON = /https?:\/\/[^\s"'<>\\]+/g; |
| 44 | export function linkifyUrlsInText(content: string): string { |
| 45 | return content.replace(URL_IN_JSON, url => createHyperlink(url)); |
| 46 | } |
| 47 | export function OutputLine(t0) { |
| 48 | const $ = _c(11); |
| 49 | const { |
no test coverage detected