tree: a7ba30f3f051de65d7b32e314357332c99c3cd32 [path history] [tgz]
  1. index.js
  2. license
  3. package.json
  4. readme.md
src/third_party/devtools/node_modules/strip-eof/readme.md

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