R/utils.R

# Drop NULLs from a list
drop_nulls <- function(x) {
  x[!vapply(x, is.null, logical(1))]
}
yjalbert/profvis documentation built on May 4, 2019, 5:30 p.m.