Irina Glushko 2389e7160b HW1 done 3 năm trước cách đây
..
index.js 2389e7160b HW1 done 3 năm trước cách đây
license 2389e7160b HW1 done 3 năm trước cách đây
package.json 2389e7160b HW1 done 3 năm trước cách đây
readme.md 2389e7160b HW1 done 3 năm trước cách đây

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