R/format.default.R

Defines functions format.default

## functions in the tis namespace will find this 
format.default <- function(x, ...){
  ## BUGFIX: don't lose attributes of x
  res <- get("format.default", pos = "package:base")(x, ...)
  attributes(res) <- attributes(x)
  res
}

Try the tis package in your browser

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

tis documentation built on Sept. 29, 2021, 1:06 a.m.