File

util/xpcall.lua @ 12539:cfdc8cca64d3

util.prosodyctl.shell: Print errors in red to highlight them
author Kim Alvefur <zash@zash.se>
date Wed, 01 Jun 2022 13:59:00 +0200
parent 9561:cfc7b2f7251e
child 12975:d10957394a3c
line wrap: on
line source

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