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))
}
AEBilgrau/GMCM documentation built on Nov. 9, 2021, 7:31 p.m.