(content: string)
| 357 | } |
| 358 | |
| 359 | const expectLf = (content: string) => { |
| 360 | const counts = count(content) |
| 361 | expect(counts.crlf).toBe(0) |
| 362 | expect(counts.lf).toBeGreaterThan(0) |
| 363 | } |
| 364 | |
| 365 | const expectCrlf = (content: string) => { |
| 366 | const counts = count(content) |