"use strict"; exports.formatLong = void 0; var _index = require("../../_lib/buildFormatLongFn.js"); const dateFormats = { full: "y'年'M'月'd'日' EEEE", long: "y'年'M'月'd'日'", medium: "yyyy-MM-dd", short: "yy-MM-dd", }; const timeFormats = { full: "zzzz a h:mm:ss", long: "z a h:mm:ss", medium: "a h:mm:ss", short: "a h:mm", }; const dateTimeFormats = { full: "{{date}} {{time}}", long: "{{date}} {{time}}", medium: "{{date}} {{time}}", short: "{{date}} {{time}}", }; const formatLong = (exports.formatLong = { date: (0, _index.buildFormatLongFn)({ formats: dateFormats, defaultWidth: "full", }), time: (0, _index.buildFormatLongFn)({ formats: timeFormats, defaultWidth: "full", }), dateTime: (0, _index.buildFormatLongFn)({ formats: dateTimeFormats, defaultWidth: "full", }), });