gulp-bom
v5.0.0
Published
Add a UTF-8 BOM to files
Downloads
26,145
Maintainers
Readme
gulp-bom
Add a UTF-8 BOM to files
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.
Gulp strips the BOM as it's useless. This is for the few dumb tools that do require it. Don't use this unless you really need to.
Install
npm install --save-dev gulp-bom
Usage
import gulp from 'gulp';
import bom from 'gulp-bom';
export default () => (
gulp.src('app.js')
.pipe(bom())
.pipe(gulp.dest('dist'))
);