util/mathcompat.lua
author Matthew Wild <mwild1@gmail.com>
Fri, 01 Mar 2024 17:22:29 +0000
changeset 13453 9912baa541c0
parent 12786 8815d3090928
permissions -rw-r--r--
util.bit53: Add bnot() method

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