mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
9 lines
187 B
Lua
9 lines
187 B
Lua
local xpcall = xpcall;
|
|
|
|
if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then
|
|
xpcall = require"util.compat".xpcall;
|
|
end
|
|
|
|
return {
|
|
xpcall = xpcall;
|
|
};
|