XuelesszzZ 94af2b8e7b 6-30-5 | 1 rok pred | |
---|---|---|
.. | ||
index.js | 1 rok pred | |
license | 1 rok pred | |
package.json | 1 rok pred | |
readme.md | 1 rok pred |
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