R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.makepipe <- list(
    makepipe.quiet = FALSE
  )
  toset <- !(names(op.makepipe) %in% names(op))
  if (any(toset)) options(op.makepipe[toset])

  invisible()
}

Try the makepipe package in your browser

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

makepipe documentation built on Dec. 7, 2022, 5:16 p.m.