UNPKG

@e-group/utils

Version:

eGroup team utils that share across projects.

10 lines (8 loc) 210 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = roundToTwoDecimal; function roundToTwoDecimal(num) { return Math.round((num + Number.EPSILON) * 100) / 100; }