#' Vectorized isTRUE
#'
#' @param x vector
#'
#' @seealso
#' - [all_true()]
#' - [rlang::is_true()]
#'
#' @export
#'
is_true <- function (x) {
#.Defunct()
.Deprecated("all_true or isTRUE or rlang::is_true")
vapply(x, FUN = isTRUE, FUN.VALUE = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.