diff options
Diffstat (limited to 'fs/eol.ts')
| -rw-r--r-- | fs/eol.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ export function detect(content: string): EOL | null { if (!d || d.length === 0) { return null; } - const crlf = d.filter(x => x === EOL.CRLF); + const crlf = d.filter((x: string) => x === EOL.CRLF); if (crlf.length > 0) { return EOL.CRLF; } else { |
