fd-gulp-removebom
v0.0.1
Published
remove UTF-8 BOM
Downloads
2
Maintainers
Readme
基于gulp的移除BOM的插件
用法
removeBom()
例子
var gulp = require('gulp');
var removeBom = require('fd-gulp-removebom');
gulp.task('removebom', function() {
return gulp.src('./source/utf.js')
.pipe(removeBom())
.pipe(gulp.dest('./dest/'));
});