wishthis/node_modules/strip-bom-buf
2022-04-08 12:55:35 +02:00
..
index.js Add production dependencies 2022-01-21 09:28:41 +01:00
license Add production dependencies 2022-01-21 09:28:41 +01:00
package.json Install yarn 2022-04-08 12:55:35 +02:00
readme.md Add production dependencies 2022-01-21 09:28:41 +01:00

strip-bom-buf Build Status

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.

Install

$ npm install --save strip-bom-buf

Usage

const fs = require('fs');
const stripBomBuf = require('strip-bom-buf');

stripBomBuf(fs.readFileSync('unicorn.txt'));
//=> 'unicorn'

License

MIT © Sindre Sorhus