R/alert.R
alert.Rd
Alert messages
alert(x) alertDanger(x) alertInfo(x) alertSuccess(x) alertWarning(x)
character.
character
Console output, with invisible return of x input.
x
Updated 2021-08-18.
cli::cli_alert().
cli::cli_alert()
cli::cli_alert_info().
cli::cli_alert_info()
cli::cli_alert_success().
cli::cli_alert_success()
cli::cli_alert_warning().
cli::cli_alert_warning()
x <- "hello world" alert(x) #> → hello world alertDanger(x) #> ✖ hello world alertInfo(x) #> ℹ hello world alertSuccess(x) #> ✔ hello world alertWarning(x) #> ! hello world