1.0.0 • Published 10 years ago

trailing-newline v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

trailing-newline Build Status

Check whether a string ends with a newline on Unix or Windows.

Installing

$ npm install trailing-newline

API

trailingNewline(text) -> Boolean

Checks whether the text ends in a newline character (\n or \r\n).

// unix
trailingNewline('Hello world\n') === true;

// windows
trailingNewline('Hello world\r\n') === true;