(content: string)
| 33 | * line terminator (not a new empty line), matching editor line numbering. |
| 34 | */ |
| 35 | export function countLines(content: string): number { |
| 36 | const parts = content.split(EOL); |
| 37 | return content.endsWith(EOL) ? parts.length - 1 : parts.length; |
| 38 | } |
| 39 | function FileWriteToolCreatedMessage(t0) { |
| 40 | const $ = _c(25); |
| 41 | const { |
no outgoing calls
no test coverage detected