mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Add jid.bare() helper function
This commit is contained in:
parent
902d98e486
commit
c36a8743fe
1 changed files with 5 additions and 0 deletions
|
@ -12,4 +12,9 @@ function split(jid)
|
||||||
return node, server, resource;
|
return node, server, resource;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function bare(jid)
|
||||||
|
local node, host = split(jid);
|
||||||
|
return node.."@"..host;
|
||||||
|
end
|
||||||
|
|
||||||
return _M;
|
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue