#' Throw an error if `x` contains `NA`.
#'
#' Returns nothing if `x` is good.
#'
#' @param x object to check
check_missing <- function(x) {
if (anyNA(x)) {
stop('`x` cannot contain `NA`')
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.