Return the left side unless it is NULL or has length zero, otherwise
return the right side. Use %ss% when only NULL should fall through;
that matches the rlang %||% operator without masking it.
Examples
NULL %|||% 10
#> [1] 10
character(0) %|||% "fallback"
#> [1] "fallback"
5 %|||% 10
#> [1] 5