R/tabde-package.R

Defines functions style_red style_yellow

#' @keywords internal
#' @rdname tabde
"_PACKAGE"




style_yellow <- function(...){
  if (requireNamespace("crayon", quietly = TRUE))
    crayon::yellow(...)
  else
    paste(...)
}


style_red <- function(...){
  if (requireNamespace("crayon", quietly = TRUE))
    crayon::red(...)
  else
    paste(...)
}
s-fleck/tabde documentation built on April 4, 2021, 10:11 p.m.