view util/xpcall.lua @ 13862:d8d1a3ff8ce9

util.pposix: Update teal interface spec f29d15aef6f8 added fdopen() 5d4d7ed83f1a added pipe()
author Kim Alvefur <zash@zash.se>
date Thu, 20 Feb 2025 00:05:24 +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;
};