# Pastebin EqaLsg1m this.$scope.validateWeight = (val) => { if (!val.Weight) { return; } val.Weight = val.Weight.toString().replace(/\W|\D/gi, ''); if (val.Weight < 1) { val.Weight = 1; } else if (val.Weight > 100) { val.Weight = 100; } val.Weight = Math.round(val.Weight); };