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