Open
Description
JShrink doesn't appear to be removing line breaks after the end of a function.
Example:
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
...becomes...
window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}
gtag('js',new Date());
Notice the line break not removed after the }
character.