gulp-eol

Replace or append EOL end of file


Keywords
gulpplugin, eol, crlf, newline
License
MIT
Install
npm install gulp-eol@0.2.0

Documentation

  

Information

Package gulp-eol
Description Replace or append EOL end of file

Usage

eol(newline, append)

  • newline: [string] \n, \r\n or default os.EOL
  • append: [boolean] whether to append eol end of file if not any, default true
var eol = require('gulp-eol');

gulp.task('eol', function() {
  return gulp.src('./lib/*.js')
    .pipe(eol())
    .pipe(gulp.dest('./lib/'));
});