Eric Foster 35b96bc934 initial commit | 6 年之前 | |
---|---|---|
.. | ||
index.js | 6 年之前 | |
license | 6 年之前 | |
package.json | 6 年之前 | |
readme.md | 6 年之前 |
Strip the End-Of-File (EOF) character from a string/buffer
$ npm install --save strip-eof
const stripEof = require('strip-eof');
stripEof('foo\nbar\n\n');
//=> 'foo\nbar\n'
stripEof(new Buffer('foo\nbar\n\n')).toString();
//=> 'foo\nbar\n'
MIT © Sindre Sorhus