Skip to content

Latest commit

 

History

History
88 lines (44 loc) · 985 Bytes

File metadata and controls

88 lines (44 loc) · 985 Bytes
hide_title true
custom_edit_url
pagination_prev
pagination_next

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<></>).