addyosmani--agent-skills
8 行
167 B
JavaScript
8 行
167 B
JavaScript
'use strict';
|
|
|
|
function invoiceTotal(lines) {
|
|
return lines.reduce((total, line) => total + line.quantity * line.unitPrice, 0);
|
|
}
|
|
|
|
module.exports = { invoiceTotal };
|