Warp/src/Index/Util/Assert.luau

6 lines
160 B
Lua
Raw Normal View History

2024-01-05 12:14:38 +00:00
--!strict
2024-05-04 05:49:50 +00:00
--!native
--!optimize 2
2024-01-05 12:14:38 +00:00
return function(condition: (any), errorMessage: string?): ()
2024-04-02 06:10:21 +00:00
if not (condition) then error(`Warp: {errorMessage}`, 2) end
2024-01-05 12:14:38 +00:00
end