Leafo\ScssPhp\Compiler::libToLowerCase PHP Method

libToLowerCase() protected method

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