You are here

public static function JSMin::minify in Javascript Aggregator 5

Same name and namespace in other branches
  1. 6 jsmin.php \JSMin::minify()

File

./jsmin.php, line 62

Class

JSMin
jsmin.php - PHP implementation of Douglas Crockford's JSMin.

Code

public static function minify($js) {
  $jsmin = new JSMin($js);
  return $jsmin
    ->min();
}