Your IP : 216.73.216.220


Current Path : /proc/thread-self/root/var/www/fidelitychain/wwwOLD/node_modules/moment/src/lib/utils/
Upload File :
Current File : //proc/thread-self/root/var/www/fidelitychain/wwwOLD/node_modules/moment/src/lib/utils/abs-round.js

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