Package Exports
- eol
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eol) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eol
Newline character converter for JavaScript
npm install eol --save
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
License
MIT