XuelesszzZ 94af2b8e7b 6-30-5 | 1 an în urmă | |
---|---|---|
.. | ||
index.js | 1 an în urmă | |
license | 1 an în urmă | |
package.json | 1 an în urmă | |
readme.md | 1 an în urmă |
Detect the dominant newline character of a string
$ npm install --save detect-newline
const detectNewline = require('detect-newline');
detectNewline('foo\nbar\nbaz\r\n');
//=> '\n'
Returns detected newline or null
when no newline character is found.
Returns detected newline or \n
when no newline character is found.
MIT © Sindre Sorhus