{"ast":null,"code":"import { buildFormatLongFn } from \"../../_lib/buildFormatLongFn.mjs\";\nconst dateFormats = {\n  // thứ Sáu, ngày 25 tháng 08 năm 2017\n  full: \"EEEE, 'ngày' d MMMM 'năm' y\",\n  // ngày 25 tháng 08 năm 2017\n  long: \"'ngày' d MMMM 'năm' y\",\n  // 25 thg 08 năm 2017\n  medium: \"d MMM 'năm' y\",\n  // 25/08/2017\n  short: \"dd/MM/y\"\n};\nconst timeFormats = {\n  full: \"HH:mm:ss zzzz\",\n  long: \"HH:mm:ss z\",\n  medium: \"HH:mm:ss\",\n  short: \"HH:mm\"\n};\nconst dateTimeFormats = {\n  // thứ Sáu, ngày 25 tháng 08 năm 2017 23:25:59\n  full: \"{{date}} {{time}}\",\n  // ngày 25 tháng 08 năm 2017 23:25\n  long: \"{{date}} {{time}}\",\n  medium: \"{{date}} {{time}}\",\n  short: \"{{date}} {{time}}\"\n};\nexport const formatLong = {\n  date: buildFormatLongFn({\n    formats: dateFormats,\n    defaultWidth: \"full\"\n  }),\n  time: buildFormatLongFn({\n    formats: timeFormats,\n    defaultWidth: \"full\"\n  }),\n  dateTime: buildFormatLongFn({\n    formats: dateTimeFormats,\n    defaultWidth: \"full\"\n  })\n};","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}