It is a rare thing that a date can be a palindrome. But it happens.
And the idea is the following, to cover all different date formats and for the given period
IsPalindromeDateRange <- function(date = Sys.Date(), end_date = NULL, formats = "all", verbose = TRUE) { ## Helper stuff is_palindrome <- function(x) { chars <- strsplit(x, "")...