Skip to contents

This function checks if the input date has the format "YYYY-MM-DD".

Usage

check_date(date)

Arguments

date

[character(1)]
The date in format "YYYY-MM-DD".

Value

as.Date(date) if date has the format "YYYY-MM-DD". Otherwise, the function throws an error.

See also

Other date helpers: find_closest_year()

Examples

check_date(date = "2000-01-01")
#> [1] "2000-01-01"