Leafo\ScssPhp\Compiler::libToUpperCase PHP Method

libToUpperCase() protected method

protected libToUpperCase ( $args )
    protected function libToUpperCase($args)
    {
        $string = $this->coerceString($args[0]);
        $stringContent = $this->compileStringContent($string);
        $string[2] = [mb_strtoupper($stringContent)];
        return $string;
    }
Compiler