valor-software/ng2-bootstrap

View on GitHub
src/chronos/utils/abs-round.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function absRound(num: number): number {
  return num < 0 ? Math.round(num * -1) * -1 : Math.round(num);
}