last-line
v0.0.3
Published
get last line of a file
Downloads
17
Readme
SYNOPSIS
node module using slice-file to get last line of a file
INSTALL
npm install last-line
EXAMPLE
var lastLine = require('last-line');
lastLine('./path/to/file', function (err, res) {
// handle err (empty file?)
process.stdout.write(res);
});
LICENSE
MIT