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.
- Host: GitHub
- URL: https://github.com/jbenner-radham/gulp-nuke-whitespace
- Owner: jbenner-radham
- Created: 2014-10-16T02:16:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-16T02:45:10.000Z (almost 11 years ago)
- Last Synced: 2025-03-05T12:03:53.504Z (7 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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)