changeDateFormat method

string changeDateFormat(
  1. string toFormat, [
  2. string? fromFormat,
  3. string? locale
])

change a date string from a format to another format

Implementation

string changeDateFormat(string toFormat, [string? fromFormat, string? locale]) => toDate(fromFormat, locale).format(toFormat);