feat: add star progress bar

This commit is contained in:
2025-11-28 22:42:54 +01:00
parent 1378b7100a
commit b4445da204
2 changed files with 10 additions and 1 deletions

View File

@@ -86,4 +86,8 @@ function utils.splitLines(data)
return t
end
function utils.round(x)
return x >= 0 and math.floor(x + 0.5) or math.ceil(x - 0.5)
end
return utils