Usage
alert(x)
alertDanger(x)
alertInfo(x)
alertSuccess(x)
alertWarning(x)
Value
Console output, with invisible return of x
input.
Examples
x <- "hello world"
alert(x)
#> → hello world
alertDanger(x)
#> ✖ hello world
alertInfo(x)
#> ℹ hello world
alertSuccess(x)
#> ✔ hello world
alertWarning(x)
#> ! hello world