Detect the dominant newline character of a string
npm install detect-newlineimport {detectNewline} from 'detect-newline';
detectNewline('foo\nbar\nbaz\r\n');
//=> '\n'Returns the detected newline or undefined when no newline character is found or \n when no dominant newline is present.
Returns the detected newline or \n when no newline character is found, no dominant newline is present, or the input is not a string.
- detect-newline-cli - CLI for this module
- detect-indent - Detect the indentation of code