(id: string, meta: KeyedRecord)
| 65 | } |
| 66 | |
| 67 | function docLabel(id: string, meta: KeyedRecord) { |
| 68 | const title = meta.title; |
| 69 | if (typeof title === 'string' && title.trim()) { |
| 70 | return `${id} "${title}"`; |
| 71 | } |
| 72 | return id; |
| 73 | } |
| 74 | |
| 75 | export function printRootDocPairDiff(opts: { |
| 76 | fromLabel: string; |
no outgoing calls
no test coverage detected