R/string-array.R

Defines functions string_array

#' @import assertthat
string_array <- function(strings) {
    assert_that(is.character(strings))
    paste(unique(strings), collapse = ",")
}

Try the rmapzen package in your browser

Any scripts or data that you put into this service are public.

rmapzen documentation built on Oct. 17, 2023, 5:06 p.m.