1.0.5 • Published 4 years ago

gulp-stripbom v1.0.5

Weekly downloads
748
License
MIT
Repository
github
Last release
4 years ago

gulp-stripbom

Version Dependency Status Downloads

This is inspired by strip-bom for gulp.

Usage

var stripBom = require('gulp-stripbom');

gulp.task('default', function(){

	return gulp.src('1.txt')
			.pipe(stripBom())
			.pipe(gulp.dest('dest'));
});

API

stripBom(options)

options.ext

Type: String or Array

Filter files by ext those to process.

options.showLog

Type: Boolean

Default: true

If show log or not.

Test

$ npm test

License

MIT