Nothing
#' @include base.r
NULL
base_fs$file.exists <- function(call, env) {
path <- eval(call[[2]], env)
paste0("Path '", path, "' does not exist")
}
base_fs$anyDuplicated <- function(call, env) {
paste0(call$x, " is not unique")
}
base_fs$identical <- function(call, env) {
paste0(deparse(call$x), " not identical to ", deparse(call$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.