0.5.30
0.5.30
- Added the
typeof(any)
function in Dataview, which obtains the type of any value for comparison:
typeof("text") = "string"
typeof(1) = "number"
typeof([1, 2, 3]) = "array"
- Added the modulo operator (
%
) for doing integer division remainder. I.e.,14 % 2 = 0
and14 % 3 = 2
. - Fixed some minor spacing issues with lists in tables.