Skip to content

Commit ce4de42

Browse files
authored
Update utils.R
1 parent 7ddaf52 commit ce4de42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

feeds/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ library(purrr)
55
`%<<%` <- function(x, y) {
66
if (identical(length(x), 0L)) return(y)
77
if (is.null(x) || identical(x, "") ||
8-
is.na(x)) return(y)
8+
any(is.na(x))) return(y)
99
x
1010
}
1111

0 commit comments

Comments
 (0)