Home > @rushstack/node-core-library > NewlineKind
NewlineKind enum
Enumeration controlling conversion of newline characters.
Signature:
export declare enum NewlineKind
Enumeration Members
| Member | Value | Description |
|---|---|---|
| CrLf | "\r\n" | Windows-style newlines |
| Lf | "\n" | POSIX-style newlines |
| OsDefault | "os" | Default newline type for this operating system (os.EOL). |