osem-fcy/vendor/assets/javascripts/momentjs/src/lib/utils/abs-round.js
Henne Vogelsang b6560dbb34 Get off off rails-assets
Just moving the things we currently use (and should drop in the ASAP) to vendor/assets
2024-03-05 16:01:07 +01:00

7 lines
166 B
JavaScript

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