function getService()

in eng/scripts/inventory-dashboard/src/formatData.ts [203:211]


function getService(pkg: any): string {
  // If the CSV data has a Service Name field, use that to determine the service name
  if (pkg.ServiceName) {
    return pkg.ServiceName;
  } else {
    // if Service Name can't be determined, return default string
    return "Unable to determine Service Name";
  }
}