Nothing
#' Check whether two function objects have the same text definition.
#'
#' @param x First function to compare.
#' @param y Second function to compare.
#'
#' @return Logical
fns_equal <- function(x, y) {
if (!rlang::is_function(x) || !rlang::is_function(y)) {
stop("`x` and `y` must be functions.")
}
deparse1(x) == deparse1(y)
}
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.