Warp/src/Index/Util/Assert.luau
EternityDev b5b64c3469 v1.0.4
2024-01-30 13:36:08 +07:00

4 lines
No EOL
126 B
Lua

--!strict
return function(condition: (any), errorMessage: string?): ()
if not (condition) then error(errorMessage, 2) end
end