R/utils.R

Defines functions vmsg is_blank

is_blank <- function(value) {
  return(is.null(value) || value == "")
}

vmsg <- function(verbose, msg, ...) {
  if (isTRUE(verbose)) {
    message(sprintf(msg, ...))
  }
}

Try the aws.signature package in your browser

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

aws.signature documentation built on July 1, 2020, 10:28 p.m.