Mercurial > prosody-hg
view util/xpcall.lua @ 13270:14bbfb2cc8dd
lint: Teach luacheck about module:once
Silence warning for using this introduced in 9c62ffbdf2ae
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 15 Oct 2023 16:43:14 +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; };
