forked from Adleraci/adlerka.top
test inlining
This commit is contained in:
parent
e4e10863c5
commit
1d1b31f035
@ -57,9 +57,12 @@ function minifyCss($css) {
|
||||
}
|
||||
|
||||
function minifyJs($js) {
|
||||
// Remove comments
|
||||
// Remove block comments
|
||||
$js = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $js);
|
||||
|
||||
// Remove line comments
|
||||
$js = preg_replace('!(//.*)|(/\*.*?\*/)!s', '', $js);
|
||||
|
||||
// Remove newlines and tabs
|
||||
$js = str_replace(array("\r\n", "\r", "\n", "\t"), '', $js);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user