UNPKG

vue-round-filter

Version:

round number with whichever decimal accuracy

8 lines (5 loc) 179 B
module.exports = function round(value, accuracy, keep) { if (typeof value != 'number') return value; var fixed = value.toFixed(accuracy); return keep ? fixed : +fixed; };