UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

3 lines 107 B
export default function roundToTwoDecimal(num) { return Math.round((num + Number.EPSILON) * 100) / 100; }