Nothing
`%||%` <- function(e1, e2) {
if (is.null(e1)) {
return(e2)
}
e1
}
drop_null <- function(x) {
x[!vapply(x, is.null, NA)]
}
drop_na <- function(x) {
x[!is.na(x)]
}
last <- function(x) {
x[[length(x)]]
}
.Deprecated <- function(...) {
if (!getOption("ftExtra.ignore.deprecation", FALSE)) base::.Deprecated(...)
}
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.