Nothing
#' @importFrom magrittr %>%
NULL
determine_casing_fn <- function(case) {
if (case == 'upper') fn <- stringr::str_to_upper
if (case == 'lower') fn <- stringr::str_to_lower
if (case == 'sentence') fn <- stringr::str_to_sentence
if (case == 'title') fn <- stringr::str_to_title
return(fn)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.