As title - `purrr::pmap` seems to strip date class. ``` r print_date = function(b) b b = as.Date("2012-03-22") purrr::pmap(list(b), print_date) #> [[1]] #> [1] 15421 ``` Not sure if this is intended? Caught me out though :)