(markdown?: string)
| 30 | }; |
| 31 | |
| 32 | const findFirstImage = (markdown?: string): Thumbnail | undefined => { |
| 33 | const match = markdown?.match(IMAGE_MARKDOWN); |
| 34 | return match == null ? undefined : getThumbnailFromMatch(match); |
| 35 | }; |
| 36 | |
| 37 | const splitLeadingImage = ( |
| 38 | markdown: string | undefined, |
no test coverage detected
searching dependent graphs…