# eol #### [Newline](http://en.wikipedia.org/wiki/Newline) character converter for JavaScript ``` npm install eol --save ``` ```js var eol = require('eol') ``` ## API ### `eol.auto(text)` - Normalize line endings in text for the current operating system - @return string with line endings normalized to `\r\n` or `\n` ### `eol.crlf(text)` - Normalize line endings in text to CRLF (Windows, DOS) - @return string with line endings normalized to `\r\n` ### `eol.lf(text)` - Normalize line endings in text to LF (Unix, OS X) - @return string with line endings normalized to `\n` ### `eol.cr(text)` - Normalize line endings in text to CR (Mac OS) - @return string with line endings normalized to `\r` ### `eol.before(text)` - Add linebreak before text - @return string with linebreak added before text ### `eol.after(text)` - Add linebreak after text - @return string with linebreak added after text ### `eol.split(text)` - Split text by newline - @return array of lines ## License MIT