Nothing
#' Check if package is installed
#'
#' This function tests if a package is installed. Its main purpose is for use
#' together with mocking in testthat.
#'
#' @param package Package name.
#'
#' @return Logical.
#' @noRd
#'
#' @examples
#' is_package_installed("dplyr")
is_package_installed <- function(package) {
requireNamespace(package, quietly = TRUE)
}
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.