--[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
local ____exports = {}
local function round(value, places)
    local factor = 10 ^ places
    return math.floor(value * factor + 0.5) / factor
end
____exports.default = {round = round}
return ____exports
