Skip to content

Instantly share code, notes, and snippets.

@stevermeister
Created June 29, 2017 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevermeister/85c3c4bcbb08ffa832ae5f419a9b00bd to your computer and use it in GitHub Desktop.
Save stevermeister/85c3c4bcbb08ffa832ae5f419a9b00bd to your computer and use it in GitHub Desktop.
const myNameValidator = (control: FormControl) => {
const condition = !!control.value;
if (!condition) {
return {myNameValidator: 'does not match the condition'}
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment