UNPKG

detect-eol

Version:
9 lines (8 loc) 283 B
declare const CHAR_CR = 13; declare const CHAR_LF = 10; declare const NEWLINE_CR = "\r"; declare const NEWLINE_CRLF = "\r\n"; declare const NEWLINE_LF = "\n"; declare const NEWLINE_RE: RegExp; export { CHAR_CR, CHAR_LF }; export { NEWLINE_CR, NEWLINE_CRLF, NEWLINE_LF, NEWLINE_RE };