Software /
code /
prosody
File
util/xpcall.lua @ 11874:84f4c6957d62
util.dataforms: Add support for datetime field types via XEP-0122
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 25 Oct 2021 21:45:46 +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; };