Skip to content

Commit

Permalink
Fixed documentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kmohindra354 committed Oct 14, 2023
1 parent d8d57d0 commit 5ce8804
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,12 @@ export const getUserIdFromEmail = async (email: string) => {
}
};

/**
* Counts the distinct number of majors, years or genders of students
* @param list the list of majors, years, or genders, etc of students
* @returns the distinct number of people
*/

const getDistinctCount = async (list: object[]) => {
const map = new Map();
list.forEach((element: any) => {
Expand Down

0 comments on commit 5ce8804

Please sign in to comment.