Combine attributes from a vector of strings.

attributes(...)

Arguments

...

Strings.

Value

Combined string with all the attributes.

Examples

dabr::attributes("A", "B", "C")
#> [1] "A, B, C"
dabr::attributes(c("A", "B", "C"))
#> [1] "A, B, C"
dabr::attributes(c("A", "B", "C"), "D", "E", "F")
#> [1] "A, B, C, D, E, F"