1.0.2 • Published 4 years ago

remove-use-strict-from-js v1.0.2

Weekly downloads
2
License
ISC
Repository
-
Last release
4 years ago

remove-use-strict-from-js for gulp

remove-use-strict-from-js is a gulp plugin to remove "use strict" from js file which after using babel.

Usage

npm i remove-use-strict-from-js -D

var removeUseStrict = require("remove-use-strict-from-js");
// gulp task
function javascript() {
  return src(["js/*.js"]).pipe(removeUseStrict()).pipe(dest("./dist"));
}