> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/redux/repos/examples/real-world/node_modules/detect-newline.md).

# 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  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)
