2025-01-23 10:17:55 -03:00

5 lines
81 B
R

drop_nulls <- function(a_list) {
a_copy <- a_list[!is.null(a_list)]
a_copy
}