var MaxAdd = function (value, amount, max){ return Math.min(value + amount, max); } ; module.exports = MaxAdd;