Files
bigcapital/common/utils.js
Ahmed Bouhuolia 70809cb05c WIP Items module.
2019-09-03 02:07:28 +02:00

4 lines
95 B
JavaScript

export function roundTo(num, to = 2) {
return +(Math.round(num + "e+" + to) + "e-" + to);
}