Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Last active June 19, 2019 21:14
Show Gist options
  • Save ganqqwerty/34431cce47ffb6dd2a1aebb41cb2f746 to your computer and use it in GitHub Desktop.
Save ganqqwerty/34431cce47ffb6dd2a1aebb41cb2f746 to your computer and use it in GitHub Desktop.
// For example, you can pass multiple validators composed with Validator.compose
// if the myTextField has the word 'Illuminati'
conditionalValidator(() => this.myForm.get('myTextField').value.includes('Illuminati'),
Validators.compose([
Validators.required,
Validators.pattern(/.*mason.*/)
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment