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

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

Join with space if the value is an array, else return the input value with no changes.
protected static joinAny ( array $value ) : string | mixed
$value array
Результат string | mixed
    protected static function joinAny($value)
    {
        return is_array($value) ? implode(' ', $value) : $value;
    }