UNPKG

earnings

Version:

13 lines 223 B
function newEarning(rate = 0, current = 0) { function amount() { return current } function next() { return newEarning(rate, current + rate) } return { amount, next } } module.exports = newEarning