sindresorhus / normalize-newline

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

License:MIT License


Languages

Language:JavaScript 83.6%Language:TypeScript 16.4%