Nothing
#' @export
#' @rdname stabilize_chr
stabilize_chr_scalar <- function(x,
...,
allow_null = TRUE,
allow_zero_length = TRUE,
allow_na = TRUE,
regex = NULL,
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)) {
.stabilize_cls_scalar(
x,
to_cls_scalar_fn = to_chr_scalar,
check_cls_value_fn = .check_value_chr,
check_cls_value_fn_args = list(regex = regex),
allow_null = allow_null,
allow_zero_length = allow_zero_length,
allow_na = allow_na,
x_arg = x_arg,
call = call,
x_class = x_class,
...
)
}
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.