Skip to content
Snippets Groups Projects
Commit ba192110 authored by Austin King's avatar Austin King
Browse files

Adding _ to email regexp per stomlinson

parent ce62c4a8
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ var logger = require('./logging.js').logger;
module.exports = function (value) {
var isEmail = function() {
if (!value.toLowerCase().match(/^[\w.!#$%&'*+\-/=?\^`{|}~]+@[a-z\d-]+(\.[a-z\d-]+)+$/i))
if (!value.toLowerCase().match(/^[\w.!#$%&'*+\-/=?\^`{|}~]+@[a-z\d-_]+(\.[a-z\d-_]+)+$/i))
throw "not a valid email";
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment