view util/mathcompat.lua @ 13904:f8779be95156

MUC: Support for filtering presence broadcasts with per-session filters Currently no filters are defined, but could be added by modules (hint hint).
author Matthew Wild <mwild1@gmail.com>
date Mon, 11 Nov 2024 12:52:54 +0000
parents 8815d3090928
children
line wrap: on
line source

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