juice-shop/juice-shop

View on GitHub
frontend/src/app/score-board/helpers/challenge-sorting.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { type EnrichedChallenge } from '../types/EnrichedChallenge'

import sortBy from 'lodash-es/sortBy'

export function sortChallenges (
  challenges: EnrichedChallenge[]
): EnrichedChallenge[] {
  return sortBy(challenges, ['difficulty', 'tutorialOrder', 'name'])
}