lune/tests/task/fcheck.luau

14 lines
270 B
Lua

local stdio = require("@lune/stdio")
return function(index: number, type: string, value: any)
if typeof(value) ~= type then
error(
string.format(
"Expected argument #%d to be of type %s, got %s",
index,
type,
stdio.format(value)
)
)
end
end