R/utils.R

Defines functions missing_fill_blank

missing_fill_blank <- function(arg) {
  if (missing(arg)) {
    arg <- ""
  } else {
    arg <- deparse(substitute(arg))
  }
}

Try the starry package in your browser

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

starry documentation built on Jan. 17, 2023, 1:07 a.m.