R/utils.R

Defines functions .check_internet

#' @importFrom curl has_internet
#' @importFrom usethis ui_stop
#'
.check_internet <- function(){
  if (!curl::has_internet()) {
    usethis::ui_stop("No internet connection. Can not download data. Try again when you are online.")
  }
}
JanCaha/CzechData documentation built on Sept. 22, 2023, 2:47 a.m.