gulp-javascript-obfuscator icon indicating copy to clipboard operation
gulp-javascript-obfuscator copied to clipboard

Gulp plugin for javascript-obfuscator package.

Results 17 gulp-javascript-obfuscator issues
Sort by recently updated
recently updated
newest added

Issue identified as javascript-obfuscator with version greater than 1.12.1 throwing error while working with AngularJS. Downgrading the version o javascript-obfuscator resolves the issue.

node --version v10.16.3 "gulp-concat": "~2.3.3", "gulp-preprocess": "^1.2.0", "gulp-javascript-obfuscator": "^1.1.2", The following gulp code is used: ``` var preprocess = require('gulp-preprocess'), concat = require('gulp-concat'), javascriptobfuscator = require('gulp-javascript-obfuscator'); gulp.task('app', function() { return...

First at all, sorry for my english, i will try to explain it as better as possible. I have the following js code: ```javascript export const Painter = function (elements,...

bug
cannot reproduce

Hi, I encountered the following error while running gulp: ``` Error: Cannot find module 'vinyl-sourcemaps-apply' at Function.Module._resolveFilename (module.js:548:15) at Function.Module._load (module.js:475:25) at Module.require (module.js:597:17) at require (internal/module.js:11:18) at Object. (C:\Users\jiehui\Desktop\stuff\temp\gulp...

### Remove deprecated methods In previous versions, if `gulp-sourcemaps` was not used and obfuscator's **sourceMap** option was set to **true**, a _.map_ file will be thrown to Gulp stream. ([This...

I think this should be merged to the official master with multiple files appears the issue https://github.com/javascript-obfuscator/javascript-obfuscator/issues/193 it needs 0.14.1 version of javascript-obfuscator

This git repo does not have a license mentioned. Even Though [npm page ](https://www.npmjs.com/package/gulp-javascript-obfuscator) does mention license being MIT. Can you help populate license...

After upgrading to Node.js version 13.6 running our Gulp task with gulp-javascript-obfuscator in it throws the following error: > Error in plugin "gulp-javascript-obfuscator" > Message: > The number of constructor...

Hi. https://github.com/javascript-obfuscator/javascript-obfuscator/issues/568 It would be nice if you add a unique identifier names prefix generation for each obfuscated file. The prefix should be as `aX`, where `X` - number or...

var obj = {val:true} alert( true  ||  **(**true &&  obj.value == true**)**)  //true alert( true  ||  true &&  obj.value == true)  //false    becomes   var obj = { 'val': !![] };...