Nothing
#' Hierarchical parameter resolution helper
#'
#' Used to retrieve the highest-priority parameter value.
#'
#' Priority is `arg` > `stored` > `default`.
#'
#' @param arg,stored,default Scalar parameter values evlauted in that order
#'
#' @return First non-`NULL` parameter
#' @keywords internal
#' @noRd
#' @examples
#' resolve_param(arg = "foo", stored = "bar", default = "baz")
#' resolve_param(arg = NULL, stored = "bar", default = "baz")
#' resolve_param(arg = NULL, stored = NULL, default = "baz")
resolve_param = function(arg, stored, default) (arg %||% stored) %||% default
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.