Object lib serialization.

This commit is contained in:
jussi
2024-05-22 00:11:40 +03:00
parent c95c797da6
commit cb1bc03681
10 changed files with 198 additions and 8 deletions

View File

@@ -132,7 +132,7 @@ function utillib.toBoolean( v )
return false
end
function utillib.bool2Number( bool )
function utillib.boolToNumber( bool )
return bool and 1 or 0
end