With ASP.NET Bundling with a ScriptBundle
function StartController($scope, $location, $rootScope) {}
is transformed to
func
Angular provides a way to deal with minification. If you are defining a controller you can rewrite your code as:
YOUR_APP_MODULE.controller('CONTROLLER_NAME', ['$scope', '$location', '$rootScope', function($scope, $location, $rootScope){
// DO STUFF
}]);
On Minification, this will become:
YOUR_APP_MODULE.controller('CONTROLLER_NAME', ['$scope', '$location', '$rootScope', function(n, t, i){
}]);
You can do similar stuff with other angular components also.