Browse Source

Add isFALSE backport for R < 3.5

master
Garrick Aden-Buie 7 years ago
parent
commit
e4b9915738
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      R/gathertweet_actions.R

+ 2
- 0
R/gathertweet_actions.R View File

@@ -150,3 +150,5 @@ gathertweet_simplify <- function(
log_info("Saving simplified tweets to {output}")
save_tweets(tweets_simplified, output)
}

isFALSE <- function(x) is.logical(x) && length(x) == 1L && !is.na(x) && !x

Loading…
Cancel
Save