na_pad <- function()

in R/ad_data.R [179:184]


na_pad <- function(x) {
  if (length(x) == 0) {
    return(NA)
  }
  x
}