Convert all remaining tabs by 2spaces
[vchess.git] / client / src / data / userCheck.js
index 65ed1db..9eb8562 100644 (file)
@@ -1,19 +1,17 @@
-function checkNameEmail(o)
+export function checkNameEmail(o)
 {
-       if (typeof o.name === "string")
-       {
-               if (o.name.length == 0)
-                       return "Empty name";
-               if (!o.name.match(/^[\w]+$/))
-                       return "Bad characters in name";
-       }
-       if (typeof o.email === "string")
-       {
-               if (o.email.length == 0)
-                       return "Empty email";
-               if (!o.email.match(/^[\w.+-]+@[\w.+-]+$/))
-                       return "Bad characters in email";
-       }
+  if (typeof o.name === "string")
+  {
+    if (o.name.length == 0)
+      return "Empty name";
+    if (!o.name.match(/^[\w]+$/))
+      return "Bad characters in name";
+  }
+  if (typeof o.email === "string")
+  {
+    if (o.email.length == 0)
+      return "Empty email";
+    if (!o.email.match(/^[\w.+-]+@[\w.+-]+$/))
+      return "Bad characters in email";
+  }
 }
-
-try { module.exports = checkNameEmail; } catch(e) { } //for server