UNPKG

agentsqripts

Version:

Comprehensive static code analysis toolkit for identifying technical debt, security vulnerabilities, performance issues, and code quality problems

19 lines (16 loc) 413 B
/** * @file Integration grader * @description Calculates integration grade based on score */ const { getLetterGrade } = require('../utils/gradeUtils'); /** * Get integration grade based on score * @param {number} score - Integration score (0-100) * @returns {string} Integration grade */ function getIntegrationGrade(score) { return getLetterGrade(score); } module.exports = { getIntegrationGrade };