autotag/node_modules/strip-eof
Corey Butler cda6f3fa13 WIP
2019-09-02 17:06:23 -05:00
..
index.js WIP 2019-09-02 17:06:23 -05:00
license WIP 2019-09-02 17:06:23 -05:00
package.json WIP 2019-09-02 17:06:23 -05:00
readme.md WIP 2019-09-02 17:06:23 -05:00

strip-eof Build Status

Strip the End-Of-File (EOF) character from a string/buffer

Install

$ npm install --save strip-eof

Usage

const stripEof = require('strip-eof');

stripEof('foo\nbar\n\n');
//=> 'foo\nbar\n'

stripEof(new Buffer('foo\nbar\n\n')).toString();
//=> 'foo\nbar\n'

License

MIT © Sindre Sorhus