tessl install tessl/npm-lodash-unescape@4.0.0Converts HTML entities to their corresponding characters in a string
Agent Success
Agent success rate when using this tile
85%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.39x
Baseline
Agent success rate without this tile
61%
Build a system that sorts arrays of student objects based on one or more properties.
@generates
/**
* Sorts an array of students by one or more properties.
*
* @param {Array} students - Array of student objects to sort
* @param {string|Function|Array} iteratees - Property name(s) or function(s) to sort by
* @param {string|Array} orders - Optional sort order(s): 'asc' or 'desc'
* @returns {Array} New sorted array of students
*/
function sortStudents(students, iteratees, orders) {
// IMPLEMENTATION HERE
}
module.exports = {
sortStudents,
};Provides collection sorting utilities.