NicoBurno / eol

Newline character converter for JavaScript

Home Page:https://www.npmjs.com/package/eol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

eol.split(text)

  • Split text by newline
  • @return array of lines

License

MIT

About

Newline character converter for JavaScript

https://www.npmjs.com/package/eol

License:MIT License


Languages

Language:JavaScript 57.1%Language:HTML 21.5%Language:CSS 21.4%