Craft\MinimeeTwigExtension::detectType PHP Method

detectType() protected method

Quick string detection to determine type
protected detectType ( $html = '' )
    protected function detectType($html = '')
    {
        if (strpos($html, '<link') !== FALSE) {
            return MinimeeType::Css;
        }
        if (strpos($html, '<script') !== FALSE) {
            return MinimeeType::Js;
        }
        return FALSE;
    }