R/utils.R

Defines functions check_empty_dots p_format

check_empty_dots <- function(...) {
  dots <- rlang::enquos(...)

  dots_are_empty <- length(dots) == 0L

  if (!dots_are_empty) {
    rlang::abort("`...` must be empty.")
  }

  invisible()
}

p_format <- function(x, scale = 1) paste0(round(x * scale, digits = 1), "%")
EmilHvitfeldt/percentify documentation built on July 9, 2019, 10:54 p.m.