UNPKG

@dinero.js/calculator-number

Version:

Number calculator implementation for Dinero.js

11 lines 244 B
/** * Returns the sum of two numbers. * * @param augend - The number to add to. * @param addend - The number to add. * * @returns The sum of the two numbers. */ export var add = function add(augend, addend) { return augend + addend; };