UNPKG

detect-eol

Version:
16 lines (10 loc) 266 B
/* MAIN */ const CHAR_CR = 13; const CHAR_LF = 10; const NEWLINE_CR = '\r'; const NEWLINE_CRLF = '\r\n'; const NEWLINE_LF = '\n'; const NEWLINE_RE = /\r?\n|\r/g; /* EXPORT */ export {CHAR_CR, CHAR_LF}; export {NEWLINE_CR, NEWLINE_CRLF, NEWLINE_LF, NEWLINE_RE};