strip-bom-stream

Strip UTF-8 byte order mark (BOM) from a stream

MIT 5 个版本
安装
npm install strip-bom-stream
yarn add strip-bom-stream
pnpm add strip-bom-stream
bun add strip-bom-stream
README

strip-bom-stream

Strip UTF-8 byte order mark (BOM) from a stream

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-stream

Usage

import fs from 'node:fs';
import stripBomStream from 'strip-bom-stream';

fs.createReadStream('unicorn.txt')
	.pipe(stripBomStream())
	.pipe(fs.createWriteStream('unicorn.txt'));

It's a Transform stream.

版本列表
5.0.0 2021-08-15
4.0.0 2019-05-12
3.0.0 2017-01-25
2.0.0 2015-11-23
1.0.0 2015-06-29