Comments Are No Longer Being Stripped
Comments are no longer getting removed inside of module definitions.
AMD Code
// Comment above the module declaration
define('example', function () {
// Comment inside the module declaration
var example;
});
Standard JavaScript Code
// Comment above the module declaration
var example = function () {
// Comment inside the module declaration
var example;
}();