/usr/share/doc/node-detect-newline/readme.md is in node-detect-newline 2.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | # detect-newline [![Build Status](https://travis-ci.org/sindresorhus/detect-newline.svg?branch=master)](https://travis-ci.org/sindresorhus/detect-newline)
> Detect the dominant newline character of a string
## Install
```
$ npm install --save detect-newline
```
## Usage
```js
const detectNewline = require('detect-newline');
detectNewline('foo\nbar\nbaz\r\n');
//=> '\n'
```
## API
### detectNewline(input)
Returns detected newline or `null` when no newline character is found.
### detectNewline.graceful(input)
Returns detected newline or `\n` when no newline character is found.
## Related
- [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
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)
|