You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
298 B
Lua
10 lines
298 B
Lua
-- no longer needed, only for backward compatibility
|
|
local unpack = require ("luassert.util").unpack
|
|
|
|
return {
|
|
unpack = function(...)
|
|
print(debug.traceback("WARN: calling deprecated function 'luassert.compatibility.unpack' use 'luassert.util.unpack' instead"))
|
|
return unpack(...)
|
|
end
|
|
}
|