aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/prosody/util/mathcompat.tl
diff options
context:
space:
mode:
Diffstat (limited to 'teal-src/prosody/util/mathcompat.tl')
-rw-r--r--teal-src/prosody/util/mathcompat.tl15
1 files changed, 15 insertions, 0 deletions
diff --git a/teal-src/prosody/util/mathcompat.tl b/teal-src/prosody/util/mathcompat.tl
new file mode 100644
index 00000000..1e3f9bab
--- /dev/null
+++ b/teal-src/prosody/util/mathcompat.tl
@@ -0,0 +1,15 @@
+if not math.type then
+ local enum number_subtype
+ "float" "integer"
+ end
+ local function math_type(t:any) : number_subtype
+ if t is 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