mirror of
https://github.com/vxcontrol/soldr-modules.git
synced 2026-07-22 17:35:25 -04:00
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
|
|
}
|