Files
2025-07-08 14:47:27 +02:00
..
2025-07-08 14:47:27 +02:00
2025-07-08 14:47:27 +02:00
2025-07-08 14:47:27 +02:00
2025-07-08 14:47:27 +02: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 strip-bom-buf

Usage

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

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

License

MIT © Sindre Sorhus