Leafo\ScssPhp\Compiler::libQuote PHP Method

libQuote() protected method

protected libQuote ( $args )
    protected function libQuote($args)
    {
        $value = $args[0];
        if ($value[0] === Type::T_STRING && !empty($value[1])) {
            return $value;
        }
        return [Type::T_STRING, '"', [$value]];
    }
Compiler