mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
7 lines
247 B
JavaScript
7 lines
247 B
JavaScript
|
|
export default (value, longDateFormat = 'longDateTime', fullDateFormat = 'fullDateTime') => {
|
||
|
|
const year = value.getFullYear();
|
||
|
|
const currentYear = new Date().getFullYear();
|
||
|
|
|
||
|
|
return year === currentYear ? longDateFormat : fullDateFormat;
|
||
|
|
};
|