All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.actor.util.misc.EmailUtils.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package im.actor.util.misc

object EmailUtils {

  private val testMailRegex = """^.*@{1}acme\d{4}.com""".r

  def isTestEmail(email: String): Boolean = testMailRegex.findFirstIn(email).isDefined

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy