(date: string | Date)
| 213 | }; |
| 214 | |
| 215 | export const getPlusMemberDateFormat = (date: string | Date): string => { |
| 216 | return new Date(date).toLocaleString('en-US', { |
| 217 | month: 'short', |
| 218 | day: 'numeric', |
| 219 | year: 'numeric', |
| 220 | }); |
| 221 | }; |
| 222 | |
| 223 | export const getLastActivityDateFormat = ( |
| 224 | value: Date | number | string, |