function validateEmail(s) { return /^[^@\s]+@[^@\s]+\.[^@\s]+$/.test(s); }
module.exports = { validateEmail };