is_weekend.Rd
Return TRUE if the date vector is a weekend (saturday/sunday).
is_weekend(x)
A date vector
A boolean vector with the return from the condition check.
is_weekend(x = Sys.time()) #> [1] FALSE is_weekend(x = Sys.Date()) #> [1] FALSE