(date: string | Date)
| 228 | }; |
| 229 | |
| 230 | export const getPlusMemberDateFormat = (date: string | Date): string => { |
| 231 | return new Date(date).toLocaleString('en-US', { |
| 232 | month: 'short', |
| 233 | day: 'numeric', |
| 234 | year: 'numeric', |
| 235 | }); |
| 236 | }; |
| 237 | |
| 238 | export const getLastActivityDateFormat = ( |
| 239 | value: Date | number | string, |