Warp/src/Index/Util/Assert.luau
EternityDev dbed984eea v1.0.13
2024-09-27 11:10:12 +07:00

6 lines
No EOL
184 B
Lua

--!strict
--!native
--!optimize 2
return function(condition: (any), errorMessage: string, level: number?): ()
if not (condition) then error(`Warp: {errorMessage}`, level or 2) end
end