util/mathcompat.lua
author Kim Alvefur <zash@zash.se>
Fri, 01 Mar 2024 19:22:49 +0100
changeset 13455 4a9a69659727
parent 12786 8815d3090928
permissions -rw-r--r--
net.server: Disable epoll signalfd handling by default until problems resolved

if not math.type then

	local function math_type(t)
		if type(t) == "number" then
			if t % 1 == 0 and t ~= t + 1 and t ~= t - 1 then
				return "integer"
			else
				return "float"
			end
		end
	end
	_G.math.type = math_type
end