lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | 4 年之前 | |
---|---|---|
.. | ||
index.d.ts | 4 年之前 | |
index.js | 4 年之前 | |
license | 4 年之前 | |
package.json | 4 年之前 | |
readme.md | 4 年之前 |
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