Nothing
#' Check if an object is a Code List
#'
#' @param x object to test.
#'
#' @return
#' Returns a logical of length 1. Returns \code{TRUE} is \code{x} is of type
#' \code{\link{codelist}} or a \code{data.frame} that conforms to the
#' requirements of a code list.
#'
#' @export
is.codelist <- function(x) {
methods::is(x, "codelist") || isTRUE(cl_is_valid(x))
}
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.