source: src/utils/format-time.ts@ 057453c

main
Last change on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 764 bytes
Line 
1import { format, getTime, formatDistanceToNow } from 'date-fns';
2
3// ----------------------------------------------------------------------
4
5type InputValue = Date | string | number | null | undefined;
6
7export function fDate(date: InputValue, newFormat?: string) {
8 const fm = newFormat || 'dd MMM yyyy';
9
10 return date ? format(new Date(date), fm) : '';
11}
12
13export function fDateTime(date: InputValue, newFormat?: string) {
14 const fm = newFormat || 'dd MMM yyyy p';
15
16 return date ? format(new Date(date), fm) : '';
17}
18
19export function fTimestamp(date: InputValue) {
20 return date ? getTime(new Date(date)) : '';
21}
22
23export function fToNow(date: InputValue) {
24 return date
25 ? formatDistanceToNow(new Date(date), {
26 addSuffix: true,
27 })
28 : '';
29}
Note: See TracBrowser for help on using the repository browser.