hy0ug0/bytes-convert

View on GitHub
src/roundTwoDigits.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export default function roundTwoDigits(num: number): number {
    return Math.round((num + Number.EPSILON) * 100) / 100;
}