0.0.3 • Published 9 years ago

gulp-attr-remover v0.0.3

Weekly downloads
77
License
MIT
Repository
github
Last release
9 years ago

Remove element attribute if predicate is true

USAGE

function predicate(elem) {
  "use strict";
  if (!/^((ftp|rtsp|mms):)?\/\//.test(elem.attr('href'))) {
    return true;
  }
  return false;
}

gulp.task('default', function () {
  "use strict";

  gulp.src('./cases/*.html')
    .pipe(modf('a', 'href', predicate))
    .pipe(gulp.dest('./output'));
});

LICENSE

MIT