main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
764 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { format, getTime, formatDistanceToNow } from 'date-fns';
|
---|
| 2 |
|
---|
| 3 | // ----------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | type InputValue = Date | string | number | null | undefined;
|
---|
| 6 |
|
---|
| 7 | export function fDate(date: InputValue, newFormat?: string) {
|
---|
| 8 | const fm = newFormat || 'dd MMM yyyy';
|
---|
| 9 |
|
---|
| 10 | return date ? format(new Date(date), fm) : '';
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | export 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 |
|
---|
| 19 | export function fTimestamp(date: InputValue) {
|
---|
| 20 | return date ? getTime(new Date(date)) : '';
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | export 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.