Nothing
# zzz.R - miscellany
#' Check if fluxfinder.quiet option is TRUE
#' @return TRUE or FALSE
#' @keywords internal
ffi_isquiet <- function() {
getOption("fluxfinder.quiet", default = FALSE)
}
ffi_message <- function(...) {
if (ffi_isquiet()) {
return()
}
message(...)
}
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.