test inlining

This commit is contained in:
Bruno Rybársky 2024-02-04 10:59:35 +01:00
parent b8b9bc985e
commit 611280a738

@ -61,7 +61,7 @@ function minifyJs($js) {
//$js = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $js);
// Remove line comments
$js = preg_replace('!(//.*)|(/\*.*?\*/)!s', '', $js);
$js = preg_replace('/\/\/[^\n]*/', '', $js);
// Remove newlines and tabs
//$js = str_replace(array("\r\n", "\r", "\n", "\t"), '', $js);