Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Created June 18, 2019 14:01
Show Gist options
  • Save ganqqwerty/f3a84113c89044f8f42493f317c82538 to your computer and use it in GitHub Desktop.
Save ganqqwerty/f3a84113c89044f8f42493f317c82538 to your computer and use it in GitHub Desktop.
this.myForm = this.fb.group({
myCheckbox: [''],
myEmailField: ['', [
Validators.maxLength(250),
Validators.minLength(5),
Validators.pattern(/.+@.+\..+/),
emailConditionallyRequiredValidator
]]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment