export function projectSort()

in pages/projects/[year]/[quarter].js [28:32]


export function projectSort(a, b) {
  const goalTypeA = a.meta.goalType ? a.meta.goalType : 'unclassified';
  const goalTypeB = b.meta.goalType ? b.meta.goalType : 'unclassified';
  return goalTypeA < goalTypeB ? -1 : goalTypeA > goalTypeB ? 1 : 0;
}