1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-22 17:04:17 +00:00

8 lines
151 B
JavaScript

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