R/clean.call.R

Defines functions clean.call

clean.call = function(x) {
  z <- strsplit(paste(x, collapse="\t"), "\t")[[1]]
  switch(z[1],
         "lapply" = z[3],
         "sapply" = z[3],
         "do.call" = z[2],
         "function" = "FUN",
         "source" = "###",
         "eval.with.vis" = "###",
         z[1]
  )
}

Try the md.log package in your browser

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

md.log documentation built on Aug. 5, 2022, 5:25 p.m.