R/utilities.R

Defines functions CamelCase

CamelCase <- function(x) {
  # convert to CamelCase
  if (!is.null(x))  paste0(toupper(substring(x, 1, 1)), substring(x, 2))
}
ices-tools-prod/icesVocab documentation built on June 13, 2025, 12:52 p.m.