Nothing
#' pkg-config snapshot from install time
#'
#' Returns a data.frame with columns
#' `module`, `cflags`, `libs`, `static_libs`.
#'
#' @keywords internal
pkgcfg_db = local({
cache = NULL
function() {
if (is.null(cache)) {
path = system.file(
"extdata",
"pkgcfg_db.rds",
package = "libdeflate"
)
cache <<- if (file.exists(path)) readRDS(path) else data.frame()
}
cache
}
})
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.