summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/moment/src/lib/utils/abs-round.js
blob: 98f54bc68fd47569bf365cf6cb340b65a78c084a (plain)
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);
    }
}