(ret: ImageCandidate[])
| 759 | } |
| 760 | |
| 761 | function joinSrcset(ret: ImageCandidate[]) { |
| 762 | return ret |
| 763 | .map(({ url, descriptor }) => url + (descriptor ? ` ${descriptor}` : '')) |
| 764 | .join(', ') |
| 765 | } |
| 766 | |
| 767 | /** |
| 768 | This regex represents a loose rule of an “image candidate string” and "image set options". |