Good Day,
I am using default ASP.NET 4.5.1 bundling. All scripts are minified as expected apart of the following code:
var events = [
function Create() {
},
function Delete() {
}
];
it was minified to
var t = [function(){},function(){}];
Why does ASP.NET optimization remove function names in above scenario and how can I avoid it?