R/zzz.R

Defines functions in_chk .onAttach

.onAttach <- function(...) {
  if (interactive() && Sys.getenv("RSTUDIO") == "1"  && !in_chk()) {
    constitucion_panel()
  }
  if (interactive()) constitucion_estado()
}

in_chk <- function() {
  any(
    grepl("check",
          sapply(sys.calls(), function(a) paste(deparse(a), collapse = "\n"))
    )
  )
}
pachamaltese/constitucionabierta documentation built on Dec. 31, 2020, 1:11 a.m.