#' eval_f
#'
#' @param x
#' @param ...
#' @param env
#'
#' @importFrom rlang as_quosure eval_tidy
#'
#' @return
#' @export
eval_f <- function (x, ..., env = NULL) {
quosured <- rlang::as_quosure(x, env = env)
rlang::eval_tidy(quosured, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.