Does the JS processing in the build routine sometimes revise JS code? I have the following in a custom JS file:
almComplete = function(alm){ console.log("ALM load is complete"); };
and it ends up in app.js as:
almComplete = function almComplete(alm) { console.log("ALM load is complete"); };
Does the JS processing in the build routine sometimes revise JS code? I have the following in a custom JS file:
almComplete = function(alm){ console.log("ALM load is complete"); };
and it ends up in app.js as:
almComplete = function almComplete(alm) { console.log("ALM load is complete"); };