Nothing
#' Borrowed NULL
#'
#' @param x value set to a default value of null
#' @param y value to be used with x is null
#'
#' @name ndr-null-op
#' @export
#' @return No return value, called for side effects
#' @keywords internal
`%||%` <- function(x, y) {
if (rlang::is_null(x)) {
y
} else {
x
}
}
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.