Software /
code /
prosody
Annotate
util/jid.lua @ 11:67460500abdd
Remove redundant comments
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 25 Aug 2008 02:10:50 +0100 |
parent | 0:3e3171b59028 |
child | 27:859b316e2fb0 |
rev | line source |
---|---|
0 | 1 |
2 local match = string.match; | |
3 | |
4 module "jid" | |
5 | |
6 function split(jid) | |
7 return match(jid, "^([^@]+)@([^/]+)/?(.*)$"); | |
8 end |