UNPKG

agentsqripts

Version:

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

15 lines (12 loc) 358 B
/** * @file Well documented module */ /** * Calculates area of rectangle * @param {number} width - Rectangle width * @param {number} height - Rectangle height * @returns {number} Area of rectangle */ function calculateArea(width, height) { return width * height; }