R/starter-package.R

Defines functions ui_yeah2

#' @importFrom dplyr %>%
#' @importFrom rlang %||% .data .env
#' @keywords internal
"_PACKAGE"

# similar to usethis::ui_yeah(), but no usethis dep
ui_yeah2 <- function(x, .envir = parent.frame()) {
  cli::cli_alert_warning(x, .envir = .envir)
  utils::menu(c("Yes", "No"), "") %>%
    {dplyr::case_when(
      . == 1L ~ TRUE,
      . == 2L ~ FALSE
    )}
}

# allowing for the use of the dot when piping
utils::globalVariables(".")

# The following block is used by usethis to automatically manage
# roxygen namespace tags. Modify with care!
## usethis namespace: start
## usethis namespace: end
NULL

Try the starter package in your browser

Any scripts or data that you put into this service are public.

starter documentation built on June 7, 2023, 6:33 p.m.