sindresorhus / detect-newline

Detect the dominant newline character of a string

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

detect-newline

Detect the dominant newline character of a string

Install

npm install detect-newline

Usage

import {detectNewline} from 'detect-newline';

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

API

detectNewline(string)

Returns the detected newline or undefined when no newline character is found or \n when no dominant newline is present.

detectNewlineGraceful(unknown)

Returns the detected newline or \n when no newline character is found, no dominant newline is present, or the input is not a string.

Related

About

Detect the dominant newline character of a string

License:MIT License


Languages

Language:JavaScript 71.7%Language:TypeScript 28.3%