aboutsummaryrefslogtreecommitdiffstats
path: root/util/mathcompat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/mathcompat.lua')
-rw-r--r--util/mathcompat.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/util/mathcompat.lua b/util/mathcompat.lua
new file mode 100644
index 00000000..e8acb261
--- /dev/null
+++ b/util/mathcompat.lua
@@ -0,0 +1,13 @@
+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