remove-use-strict-from-js
v1.0.2
Published
remove-use-strict-from-js is a gulp plugin to remove "use strict" from js file which after using babel.
Downloads
279
Maintainers
Readme
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"));
}