1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-21 16:34:15 +00:00

8 lines
151 B
JavaScript

export default (email) => {
const checkIfIsEmail = (email) => {
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)
}
return checkIfIsEmail(email)
}