This commit is contained in:
Proddy
2023-02-25 14:06:40 +01:00
parent 45609e30ea
commit 2ede730cfb
15 changed files with 719 additions and 66 deletions

View File

@@ -15,24 +15,3 @@ export const formatDateTime = (dateTime: string) => {
export const formatLocalDateTime = (date: Date) => {
return new Date(date.getTime() - date.getTimezoneOffset() * 60000).toISOString().slice(0, -1).substr(0, 19);
};
// export const pluralize = (count: number, noun: string) =>
// `${Intl.NumberFormat().format(count)} ${noun}${count !== 1 ? 's' : ''}`;
// export const formatDurationSec = (duration_sec: number) => {
// if (duration_sec === 0) {
// return ' ';
// }
// const roundTowardsZero = duration_sec > 0 ? Math.floor : Math.ceil;
// return (
// ', ' +
// roundTowardsZero(duration_sec / 86400) +
// 'd ' +
// (roundTowardsZero(duration_sec / 3600) % 24) +
// 'h ' +
// (roundTowardsZero(duration_sec / 60) % 60) +
// 'm ' +
// (roundTowardsZero(duration_sec) % 60) +
// 's'
// );
// };