File

util/xpcall.lua @ 11484:a0120e935442

util.promise: Add join() convenience method Usage: promise.join(p1, p2, function (result1, result2) [...] end)
author Matthew Wild <mwild1@gmail.com>
date Thu, 25 Mar 2021 14:28:38 +0000 (2021-03-25)
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;
};