biofriction-wp-theme/node_modules/strip-bom-buf
jorge-vitrubio a7910c81a8 moved to new repo 2021-10-26 14:18:09 +02:00
..
index.js moved to new repo 2021-10-26 14:18:09 +02:00
license moved to new repo 2021-10-26 14:18:09 +02:00
package.json moved to new repo 2021-10-26 14:18:09 +02:00
readme.md moved to new repo 2021-10-26 14:18:09 +02:00

readme.md

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