#' @describeIn check-scalar-isScalar Alias for [isScalarNumeric()].
#' @export
isNumber <- function(x, nullOk = FALSE) {
if (isTRUE(nullOk) && is.null(x)) {
return(TRUE)
}
isScalarNumeric(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.