normalize-newline

Normalize the newline characters in a string to `\n`


Keywords
newline, linebreak, line, lf, crlf, eol, linefeed, character, char, normalize, convert, replace
License
MIT
Install
npm install normalize-newline@4.1.0

Documentation

normalize-newline

Normalize the newline characters in a string to \n

Install

$ npm install normalize-newline

Usage

import normalizeNewline from 'normalize-newline';

normalizeNewline('foo\r\nbar\nbaz');
//=> 'foo\nbar\nbaz'

normalizeNewline(Buffer.from('foo\r\nbar\nbaz')).toString();
//=> 'foo\nbar\nbaz'

API

normalizeNewline(input)

input

Type: string | Buffer

Input to normalize.

Related