Add jid.bare() helper function

This commit is contained in:
Matthew Wild 2008-11-20 23:28:16 +00:00
parent 902d98e486
commit c36a8743fe

View file

@ -12,4 +12,9 @@ function split(jid)
return node, server, resource;
end
function bare(jid)
local node, host = split(jid);
return node.."@"..host;
end
return _M;