Package detail

gulp-strip-banner

oscar-g371MIT0.0.2

Strips non-protected banner comments (/ ... */, but not /! ... */)

gulpplugin, banner, strip, comments

readme

gulp-strip-banner

Removes unprotected comment banners (/* / and / /) from the top of files.

Installation

`npm install gulp-strip-banner'

Usage

var gulp = require('gulp'),
    strip = require('gulp-strip-banner');

gulp.task('strip', function(){
  gulp.src('path/to/file')
    .pipe(strip())
    .pipe(gulp.dest('./path/to/dest')
})
`

Currently, only buffer is supported.