R/zzz.R

Defines functions undebug debug

#' @import methods
#' @import stats
#' @importFrom rlang .data
#' @importFrom glue glue
#' @importFrom foreach foreach %dopar%
#' @importFrom progress progress_bar
#' @importFrom ramify pprint
NULL

pkgData <- new.env()
pkgData$debug <- FALSE

debug <- function() {
    pkgData$debug <- TRUE
}

undebug <- function() {
    pkgData$debug <- FALSE
}

Try the EZFragility package in your browser

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

EZFragility documentation built on April 12, 2025, 1:22 a.m.