R/isEmpty.R
is.empty.Rd
Return TRUE or FALSE after checking if a string is empty
is.empty(string)
the string to be checked
Returns TRUE or FALSE
string <- "r2resume" string2 <- NULL is.empty(string) #> [1] FALSE is.empty(string2) #> [1] TRUE