1.0.3 • Published 8 years ago

gulp-lowerCase v1.0.3

Weekly downloads
7
License
MIT
Repository
-
Last release
8 years ago

gulp-lowerCase

##Usage

sample template file

<DIV>
  <SPAN>I AM TOUPPCASER</SPAN>
</DIV>

so in my gulpfile.js I can do

var gulp    = require('gulp'),
    lowerCase = require('gulp-lowerCase');

// ...
gulp.src('template.html')
    .pipe(lowerCase())
    .pipe(gulp.dest('out'));

the result is :

<div>
  <span>i am touppercase</span>
</div>
1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago