|
5 gadi atpakaļ | |
---|---|---|
.. | ||
index.js | 5 gadi atpakaļ | |
license | 5 gadi atpakaļ | |
package.json | 5 gadi atpakaļ | |
readme.md | 5 gadi atpakaļ |
Strip UTF-8 byte order mark (BOM) from a buffer
From Wikipedia:
The Unicode Standard permits the BOM in UTF-8, but does not require nor recommend its use. Byte order has no meaning in UTF-8.
$ npm install --save strip-bom-buf
const fs = require('fs');
const stripBomBuf = require('strip-bom-buf');
stripBomBuf(fs.readFileSync('unicorn.txt'));
//=> 'unicorn'
MIT © Sindre Sorhus