Here is my weird function that let my users create their own javascript code
function evalThisFunction(functionBody){
var func;
eval("func = " + functionBody);
return func;
}
But after minification with Closure Compiler (http://closure-compiler.appspot.com/), I get this result :
function a(b){eval("func = "+b);}
Do you see a way I can modify my weird function so it will still works after minification?