crlf-helper

0.1.0 • Public • Published

crlf-helper

Build Status (Travis)

helps to detect and change line endings in node.js strings

Installation

npm install crlf-helper

Usage

var crlf = require('crlf-helper');

var content = 'content\r\nwith line break'
var lineEnding = crlf.getLineEnding();
console.log(lineEnding);
// CRLF

var contentWithNewLineEnding = crlf.setLineEnding(content, 'LF');
console.log(contentWithNewLineEnding);
// content\nwith line break

Bugs and issues

If you find a bug or issues, please create an issue at github.

Dependents (3)

Package Sidebar

Install

npm i crlf-helper

Weekly Downloads

9

Version

0.1.0

License

MIT

Last publish

Collaborators

  • neoklosch