Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
167 Bytes
export default function absRound (number) {
if (number < 0) {
return Math.round(-1 * number) * -1;
} else {
return Math.round(number);
}
}