xtf c3c218391a 药品分类 11 months ago
..
index.js c3c218391a 药品分类 11 months ago
license c3c218391a 药品分类 11 months ago
package.json c3c218391a 药品分类 11 months ago
readme.md c3c218391a 药品分类 11 months ago

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