I need a utility function that takes in an integer value (ranging from 2 to 5 digits in length) that rounds up to the next multiple of 5 instead of the
// round with precision
var round = function (value, precision) { return Math.round(value * Math.pow(10, precision)) / Math.pow(10, precision); };
// round to 5 with precision
var round5 = (value, precision) => { return round(value * 2, precision) / 2; }