gulp-obfuscate icon indicating copy to clipboard operation
gulp-obfuscate copied to clipboard

gulp plugin to obfuscate your code using gulp-regex-replace

Results 2 gulp-obfuscate issues
Sort by recently updated
recently updated
newest added
trafficstars

Obfuscator brakes working code after processing and not working correctly with `gulp-sourcemaps`. My task looks like the following: ``` return gulp.src(paths.src.js) .pipe(gulpif((process.env.ENV !== "production"), sourcemaps.init())) .pipe(concat("all.js")) .pipe(obfuscate({ replaceMethod: obfuscate.ZALGO }))...

Chrome won't run my JavaScript app. The browser display's all white. It says: ![screen shot 2017-08-27 at 11 49 42 am](https://user-images.githubusercontent.com/5051574/29753035-ecf831ac-8b1d-11e7-873c-524e93ad0b8c.png) In Firefox, nothing's in the console but screen is...