mirror of
https://github.com/codex-storage/bittorrent-benchmarks.git
synced 2025-02-12 11:06:55 +00:00
5 lines
81 B
R
5 lines
81 B
R
drop_nulls <- function(a_list) {
|
|
a_copy <- a_list[!is.null(a_list)]
|
|
a_copy
|
|
}
|