function getLatestRelease()

in eng/scripts/inventory-dashboard/src/formatData.ts [420:426]


function getLatestRelease(pkg: any): string {
  //prop and prop type check
  if (pkg.LatestGADate && typeof pkg.LatestGADate === 'string') {
    return pkg.LatestGADate;
  }
  return "";
}