(text: string, bom: boolean)
| 81 | } |
| 82 | |
| 83 | export function joinBom(text: string, bom: boolean) { |
| 84 | const stripped = splitBom(text).text |
| 85 | return bom ? `\uFEFF${stripped}` : stripped |
| 86 | } |
| 87 | |
| 88 | function parseAdd(lines: ReadonlyArray<string>, start: number) { |
| 89 | const content: string[] = [] |
nothing calls this directly
no test coverage detected