mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
da2c0d1d65
Cleaned up series file a bit. Added spoon for common sugar tasks.
12 lines
373 B
JavaScript
12 lines
373 B
JavaScript
function bestDateString(sourceDate){
|
|
if (!sourceDate) return '';
|
|
|
|
var date = Date.create(sourceDate);
|
|
|
|
if (date.isYesterday()) return 'Yesterday';
|
|
if (date.isToday()) return 'Today';
|
|
if (date.isTomorrow()) return 'Tomorrow';
|
|
if (date.isBefore(Date.create().addDays(7))) return date.format('{Weekday}');
|
|
|
|
return date.format('{MM}/{dd}/{yyyy}');
|
|
} |