(date: Date)
| 39 | const threeMonths = toMilliseconds({days: 90}); |
| 40 | |
| 41 | export function wasLongAgo(date: Date): boolean { |
| 42 | return (Date.now() - date.getTime()) > threeMonths; |
| 43 | } |
| 44 | |
| 45 | function isPopular(): boolean { |
| 46 | return ( |
no outgoing calls
no test coverage detected