All files / app/utilities dates.ts

1 2 3 4 5 6  72x 72x 72x    
export function dateFromEpochDate(epochDate) {
  const d = new Date(0);
  d.setUTCSeconds(epochDate);
  return d;
}