| 1105 | }) |
| 1106 | |
| 1107 | const sortOtherCourses = courses => _.sortBy(courses, function (course) { |
| 1108 | let index = otherOrderedCourseIDs.indexOf(course.id != null ? course.id : course._id) |
| 1109 | if (index === -1) { index = 9001 } |
| 1110 | return index |
| 1111 | }) |
| 1112 | |
| 1113 | const sortCoursesByAcronyms = function (courses) { |
| 1114 | const orderedCourseAcronyms = _.sortBy(courseAcronyms) |
nothing calls this directly
no outgoing calls
no test coverage detected