aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/bower_components/moment/src/lib/utils/abs-round.js
blob: 98f54bc68fd47569bf365cf6cb340b65a78c084a (plain) (blame)
1
2
3
4
5
6
7
export default function absRound (number) {
    if (number < 0) {
        return Math.round(-1 * number) * -1;
    } else {
        return Math.round(number);
    }
}