Formats a date to the full format string 'MMM dd, yyyy'
The date to format
A string representing the formatted date in the full format string 'MMM dd, yyyy'
formatDateFull(new Date());// => 'Jan 01, 2022'formatDateFull('2022-01-01');// => 'Jan 01, 2022' Copy
formatDateFull(new Date());// => 'Jan 01, 2022'formatDateFull('2022-01-01');// => 'Jan 01, 2022'
Generated using TypeDoc
Formats a date to the full format string 'MMM dd, yyyy'