File: //usr/share/opensearch-dashboards/node_modules/next-line/README.md
# next-line
Iterator over lines in a string:
- Support different newline types: CRLF, LF, CR
- Support mixed newline formats in the same string
[](https://travis-ci.org/watson/next-line)
[](https://github.com/feross/standard)
## Installation
```
npm install next-line
```
## Usage
```js
var next = require('next-line')('foo\r\nbar\nbaz')
console.log(next()) // => foo
console.log(next()) // => bar
console.log(next()) // => baz
console.log(next()) // => null
```
## License
MIT