JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "abs-round.js"
Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/moment/src/lib/utils/abs-round.js
File size: 167 bytes
MIME-type: text/plain
Charset: utf-8
export default function absRound (number) {
if (number < 0) {
return Math.round(-1 * number) * -1;
} else {
return Math.round(number);
}
}