mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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;
|
||||
end
|
||||
|
||||
function bare(jid)
|
||||
local node, host = split(jid);
|
||||
return node.."@"..host;
|
||||
end
|
||||
|
||||
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue