Your IP : 216.73.216.220


Current Path : /var/www/fidelitychain/www/node_modules/moment/src/lib/utils/
Upload File :
Current File : /var/www/fidelitychain/www/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);
    }
}