| Path : /proc/thread-self/root/var/www/html/smartcirqls.com/vendors/moment/src/lib/utils/ |
| Current File : //proc/thread-self/root/var/www/html/smartcirqls.com/vendors/moment/src/lib/utils/abs-ceil.js |
export default function absCeil (number) {
if (number < 0) {
return Math.floor(number);
} else {
return Math.ceil(number);
}
}