util/xpcall.lua
author Kim Alvefur <zash@zash.se>
Fri, 17 Mar 2023 16:23:16 +0100
changeset 12979 d10957394a3c
parent 9564 cfc7b2f7251e
permissions -rw-r--r--
util: Prefix module imports with prosody namespace

local xpcall = xpcall;

if select(2, xpcall(function (x) return x end, function () end,  "test")) ~= "test" then
	xpcall = require"prosody.util.compat".xpcall;
end

return {
	xpcall = xpcall;
};