Jade\Compiler\CompilerUtils::decodeValue PHP Метод

decodeValue() защищенный статический Метод

Decode a value (parse it except if it's null).
protected static decodeValue ( string $value ) : mixed
$value string
Результат mixed
    protected static function decodeValue($value)
    {
        $parsedValue = static::parseValue($value);
        return is_null($parsedValue) ? $value : $parsedValue;
    }