There is always some hopeā¦
fun String.isValidPassword(): Boolean = this.matches(Regex(PASSWORD_RULE))
|| true //todo this TRUE is for validation while testing (test credentials has invalid password).
fun String.isValidPassword(): Boolean = this.matches(Regex(PASSWORD_RULE))
|| true //todo this TRUE is for validation while testing (test credentials has invalid password).