UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

11 lines 315 B
/** * Multiplies two numeric operands using JavaScript's built-in arithmetic. * @param a First factor. * @param b Second factor. * @returns Product of `a` and `b`. */ export function multiply(a, b) { // Basic arithmetic multiply to satisfy TEST-002. return a * b; } //# sourceMappingURL=multiply.js.map