5 lines
81 B
R
Raw Normal View History

2025-01-10 17:48:11 -03:00
drop_nulls <- function(a_list) {
a_copy <- a_list[!is.null(a_list)]
a_copy
}