test inlining

This commit is contained in:
Bruno Rybársky 2024-02-04 11:07:37 +01:00
parent c66ca9e8ac
commit 3f410c5002

@ -62,7 +62,7 @@ function minifyJs($js) {
$js = str_replace("\t", '', $js);
// Remove spaces around operators
//$js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js);
$js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js);
return trim($js);
}