R/cput.R

Defines functions cput

# dput object to character string
# cput is used inside the reports
cput <- function(x) {
  f <- tempfile()
  dput(x, file = f)
  return(readLines(f))
}

Try the GMCM package in your browser

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

GMCM documentation built on Nov. 6, 2019, 1:08 a.m.