File Manager

Path: /home/heznutpr/log.heznutprivate.com/dashboard/bower_components/moment/src/lib/utils/

Viewing File: abs-round.js

export default function absRound (number) {
    if (number < 0) {
        return Math.round(-1 * number) * -1;
    } else {
        return Math.round(number);
    }
}