view util/xpcall.lua @ 13086:42ea593bfa8d

util.jsonschema: Add some comments wrt Lua-specifics
author Kim Alvefur <zash@zash.se>
date Sat, 22 Apr 2023 13:30:19 +0200
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;
};