R/utils.R

Defines functions wrapr_deparse

wrapr_deparse <- function(item) {
  if(missing(item)) {
    stop("saw missing argument, often this is caused by an extra comma")
  }
  paste(as.character(deparse(item, width.cutoff = 500L)),
        collapse = "\n ")
}

Try the wrapr package in your browser

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

wrapr documentation built on Aug. 20, 2023, 1:08 a.m.