In date-fns, _.format(new Date(), 'EEEE, do LLL R') gives me Thursday, 12th May 2022, now how can I convert the date string to a date object in date-fns? I tried _.parse('Thursday, 12th May 2022', 'EEEE, do LLL R', new Date()), it tells me
> Uncaught RangeError: The format string mustn't contain `do` and `R` at the same time
Thanks