Are there ways to tweak the output of the JavaScript backend?

For me the resulting code looks at the moment like this:
    
    
    function formatValue_24995001(result_24995004) {
      
      console.log("Show:", result_24995004);
    
    }
    
    formatValue_24995001("hallo");
    
    
    Run

I would like to emit JavabScript where the identifiers are more readable _when 
there are no clashes with other identifiers on the same scope. In the example 
I'd liek to reduce it to something like:
    
    
    function formatValue(result {
      
      console.log("Show:", result);
    
    }
    
    formatValue("hallo");
    
    
    Run

Are there knobs for this in the compiler? 

Reply via email to