We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e481d54 commit 952f6e4Copy full SHA for 952f6e4
lib/misc.lua
@@ -18,12 +18,16 @@ function loc_colour(_c, _default)
18
end
19
20
function Cryptid.is_big(v)
21
- if is_big then return is_big(v) end
+ if is_big then
22
+ return is_big(v)
23
+ end
24
return type(v) == "table" and v.array and v.tetrate
25
26
27
function Cryptid.is_number(v)
- if is_number then return is_number(v) end
28
+ if is_number then
29
+ return is_number(v)
30
31
return type(v) == "number" or Cryptid.is_big(v)
32
33
0 commit comments