Warp/src/Index/Util/Assert.luau

4 lines
126 B
Lua
Raw Normal View History

2024-01-05 12:14:38 +00:00
--!strict
return function(condition: (any), errorMessage: string?): ()
if not (condition) then error(errorMessage, 2) end
end