You are here

private function CSSmin::lowercase_properties in Advanced CSS/JS Aggregation 8.3

Same name and namespace in other branches
  1. 8.2 advagg_css_minify/yui/CSSMin.inc \CSSmin::lowercase_properties()

File

advagg_css_minify/yui/CSSMin.inc, line 694

Class

CSSmin

Code

private function lowercase_properties($matches) {
  return $matches[1] . strtolower($matches[2]) . $matches[3];
}