mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
export default (email) => {
|
|
const checkIfIsEmail = (email) => {
|
|
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)
|
|
}
|
|
|
|
return checkIfIsEmail(email)
|
|
}
|