@duetds/date-picker
Version:
Duet Date Picker is an open source version of Duet Design System’s accessible date picker.
43 lines (22 loc) • 906 B
Markdown
> Detect the dominant newline character of a string
```
$ npm install detect-newline
```
```js
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.
- [detect-newline-cli](https://github.com/sindresorhus/detect-newline-cli) - CLI for this module
- [detect-indent](https://github.com/sindresorhus/detect-indent) - Detect the indentation of code
MIT © [Sindre Sorhus](https://sindresorhus.com)