R/paste_csv.R

#' Paste values together, separated by commas
#'
#' @param \dots character
#' @importFrom stringr str_c
#' @export
paste_csv <- function (...) {
  stringr::str_c(..., collapse = ", ")
}
BAAQMD/tbltools documentation built on Feb. 29, 2024, 5:45 a.m.