view util/xpcall.lua @ 14222:ad7f7b5f4792

util.tlsref: Bump default version to 6.0
author Matthew Wild <mwild1@gmail.com>
date Fri, 12 Jun 2026 13:12:16 +0100
parents d10957394a3c
children
line wrap: on
line source

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;
};