var schema = joi.object({
sender: joi.string().email().required()
})
joi.validate({sender: 'foo@bar.com'}, schema)
This produces the following error: "child "sender" fails because ["sender" must be a valid email]" regardless of the email address in question on IE11 on Windows 10
This produces the following error:
"child "sender" fails because ["sender" must be a valid email]"regardless of the email address in question on IE11 on Windows 10