We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ddaf52 commit ce4de42Copy full SHA for ce4de42
feeds/utils.R
@@ -5,7 +5,7 @@ library(purrr)
5
`%<<%` <- function(x, y) {
6
if (identical(length(x), 0L)) return(y)
7
if (is.null(x) || identical(x, "") ||
8
- is.na(x)) return(y)
+ any(is.na(x))) return(y)
9
x
10
}
11
0 commit comments