is-empty-file

1.0.1 • Public • Published

is-empty-file Build Status

Node module to check if a file is empty, optionally ignoring trailing whitespace.

Usage

$ npm install --save is-empty-file
var isEmpty = require('is-empty-file');
 
isEmpty('anEmptyFile.txt', function (result) {
    console.log(result); // true
});
 
// Sync behaviour
console.log(isEmpty('anEmptyFile.txt')); // true

The first argument you pass is the file name. The last one is the callback. If no callback is provided, the function will behave synchronously.

There's also an option (defaulting to false) to ignore trailing whitespace.

var isEmpty = require('is-empty-file');
 
isEmpty('bunchaWhitespace.txt', true, function (r) {
    console.log(r); // true
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    4
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    4

Package Sidebar

Install

npm i is-empty-file

Weekly Downloads

4

Version

1.0.1

License

MIT

Last publish

Collaborators

  • arthurvr