(id: number, numLines: number)
| 49 | } |
| 50 | |
| 51 | export function formatPastedTextRef(id: number, numLines: number): string { |
| 52 | if (numLines === 0) { |
| 53 | return `[Pasted text #${id}]` |
| 54 | } |
| 55 | return `[Pasted text #${id} +${numLines} lines]` |
| 56 | } |
| 57 | |
| 58 | export function formatImageRef(id: number): string { |
| 59 | return `[Image #${id}]` |
no outgoing calls
no test coverage detected