Craft\MinifyService::jsMin PHP Method

jsMin() public method

* -------------------------------------------------------------------------------- Minify the passed in JS --------------------------------------------------------------------------------
public jsMin ( $jsText = "" )
    public function jsMin($jsText = "")
    {
        if ($this->shouldMinify) {
            $jsText = \JSMin\JSMin::minify($jsText);
        }
        return $jsText;
    }