User management logic half-debugged
[vchess.git] / public / javascripts / shared / userCheck.js
CommitLineData
8a477a7e
BA
1function checkNameEmail(o)
2{
3 if (!!o.name)
4 {
5 if (o.name.length == 0)
6 return "Empty name";
7 if (!o.name.match(/^[\w]+$/))
8 return "Bad characters in name";
9 }
10 if (!!o.email)
11 {
12 if (o.email.length == 0)
13 return "Empty email";
14 if (!o.email.match(/^[\w.+-]+@[\w.+-]+$/))
15 return "Bad characters in email";
16 }
17}
18
19try { module.exports = checkNameEmail; } catch(e) { } //for server