trailing-newline
v1.0.0
Published
Check whether a string ends with a newline
Readme
trailing-newline 
Check whether a string ends with a newline on Unix or Windows.
Installing
$ npm install trailing-newlineAPI
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;