tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9da170a1b25fa1614cafe5c5bcb47e4c89cc9abf 11 lines 381 B view raw
1export const formatNumber = (num: number): string => { 2 return num.toLocaleString(); 3}; 4 5const isValidDate = (d: Date) => d instanceof Date && !isNaN(d.getTime()); 6export const formatTimestamp = (timestamp: number): string => { 7 const date = new Date(timestamp * 1000); 8 return isValidDate(date) 9 ? date.toLocaleString() 10 : new Date(timestamp / 1000).toLocaleString(); 11};