Converts HTML entities to their corresponding characters in a string
Overall
score
85%
Evaluation — 85%
↑ 1.39xAgent success when using this tile
{
"context": "This evaluation criteria assesses how well an engineer uses lodash's array searching methods (_.find, _.includes, _.indexOf) to implement user search functionality. The focus is entirely on correct usage of these specific lodash methods.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses _.find",
"description": "Uses lodash's _.find method to implement findUserById function, passing the users array and a predicate (either function or iteratee shorthand like ['id', userId])",
"max_score": 30
},
{
"name": "Uses _.find predicate",
"description": "Uses lodash's _.find method with a custom predicate function to implement findUserByPredicate function",
"max_score": 20
},
{
"name": "Uses _.includes",
"description": "Uses lodash's _.includes method to implement userExists function, checking if the searchId exists in the userIds array",
"max_score": 25
},
{
"name": "Uses _.indexOf",
"description": "Uses lodash's _.indexOf method to implement getUserPosition function, returning the index of searchId in the userIds array",
"max_score": 25
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-lodash-unescapedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10