#' A small wrapper for unlist.
#'
#' `ul` is a wrapper for [base::unlist()].
#'
#'
#' @param recursive : `FALSE`
#' @param use.names : `FALSE`
#'
#' @export
ul <- function(x, recursive = FALSE, use.names = FALSE) {
unlist(x, recursive, use.names)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.