/** * @param {Date} [date] an optional date to convert to RFC2822 format * @param {boolean} [useUtc] whether to parse the date as UTC (default: false) * @returns {string} the converted date */ export function getRFC2822Date(date = new Date(), useUtc = false) { if (useUtc) { return getRFC2822DateUTC(date); } const dates = date .toString() .replace('GMT', '') .replace(/\s\(.*\)$/, '') .split(' '); dates[0] = dates[0] + ','; const day = dates[1]; dates[1] = dates[2]; dates[2] = day; return dates.join(' '); } /** * @param {Date} [date] an optional date to convert to RFC2822 format (UTC) * @returns {string} the converted date */ export function getRFC2822DateUTC(date = new Date()) { const dates = date.toUTCString().split(' '); dates.pop(); // remove timezone dates.push('+0000'); return dates.join(' '); }