kevin tessier 5eedee288e install npm | hace 5 años | |
---|---|---|
.. | ||
index.js | hace 5 años | |
license | hace 5 años | |
package.json | hace 5 años | |
readme.md | hace 5 años |
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