mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
6 lines
No EOL
184 B
Lua
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 |