detect-newline
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i detect-newline

    Weekly Downloads

    18,858,110

    Version

    4.0.1

    License

    MIT

    Unpacked Size

    3.96 kB

    Total Files

    5

    Last publish

    Collaborators

    • sindresorhus