An open API service indexing awesome lists of open source software.

https://github.com/jbenner-radham/gulp-nuke-whitespace

Removes the trailing whitespace at the end of each line in a string.
https://github.com/jbenner-radham/gulp-nuke-whitespace

Last synced: 7 months ago
JSON representation

Removes the trailing whitespace at the end of each line in a string.

Awesome Lists containing this project

README

          

# [gulp](http://gulpjs.com)-nuke-whitespace

> Removes the trailing whitespace at the end of each line in a string.

## Install

```sh
$ npm install --save-dev gulp-nuke-whitespace
```

## Usage

```js
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](https://github.com/jbenner55)