agentsqripts
Version:
Comprehensive static code analysis toolkit for identifying technical debt, security vulnerabilities, performance issues, and code quality problems
19 lines (16 loc) • 387 B
JavaScript
/**
* @file UI grade provider
* @description Gets UI/UX grade based on analysis score
*/
const { getLetterGrade } = require('../utils/gradeUtils');
/**
* Gets UI grade based on score
* @param {number} score - UI quality score (0-100)
* @returns {string} UI quality grade (A-F)
*/
function getUIGrade(score) {
return getLetterGrade(score);
}
module.exports = {
getUIGrade
};