peach a19a732be8 commit message | 2 yıl önce | |
---|---|---|
.. | ||
index.d.ts | 2 yıl önce | |
index.js | 2 yıl önce | |
license | 2 yıl önce | |
package.json | 2 yıl önce | |
readme.md | 2 yıl önce |
Detect the dominant newline character of a string
$ npm install detect-newline
const detectNewline = require('detect-newline');
detectNewline('foo\nbar\nbaz\r\n');
//=> '\n'
Returns the detected newline or undefined
when no newline character is found.
Returns the detected newline or \n
when no newline character is found or the input is not a string.
MIT © Sindre Sorhus