detect-newline-at-eof

1.0.0 • Public • Published

detect-newline-at-eof

Node.js package Linux Build Status Windows Build Status

Detect newline at end of file

detect-newline-at-eof is similar to trailing-newline but will also match \n on Windows and \r\n on macOS.

Installation

$ npm install detect-newline-at-eof

Usage

const fs = require('fs')
const detectNewlineAtEof = require('detect-newline-at-eof')
 
const fileContents = fs.readFileSync('file.txt', 'utf8')
const newlineCharacter = detectNewlineAtEof(fileContents)
 
console.log(newlineCharacter)
// => \n, \r\n, or null if no newline character at the end was found

Changelog

This project follows Semantic Versioning 2.

  • v1.0.0 (2018-07-20):
    • Add support for Node.js v6, v8, and v10
    • Drop support for Node.js versions older than v6
    • Drop support for io.js
  • v0.1.0 (2015-07-18): Initial release.

Readme

Keywords

Package Sidebar

Install

npm i detect-newline-at-eof

Weekly Downloads

0

Version

1.0.0

License

BSD-2-Clause

Unpacked Size

3.42 kB

Total Files

4

Last publish

Collaborators

  • sonicdoe