gulp-nuke-whitespace
v0.1.3
Published
Removes the trailing whitespace at the end of each line in a string.
Downloads
3
Readme
gulp-nuke-whitespace
Removes the trailing whitespace at the end of each line in a string.
Install
$ npm install --save-dev gulp-nuke-whitespace
Usage
var gulp = require('gulp');
var nukeWhitespace = require('gulp-nuke-whitespace');
gulp.task('default', function () {
return gulp.src('src/file.ext')
.pipe(nukeWhitespace())
.pipe(gulp.dest('dist'));
});
Testing
Not implemented yet... doh!
License
MIT © James Benner