Skip to content

Instantly share code, notes, and snippets.

@mdmoin7
Created March 18, 2019 14:44
Show Gist options
  • Save mdmoin7/c555c6d9ed48597627974524718434bb to your computer and use it in GitHub Desktop.
Save mdmoin7/c555c6d9ed48597627974524718434bb to your computer and use it in GitHub Desktop.
import { FormControl } from '@angular/forms';
export function zipCodeValidator(ctrl: FormControl) {
if (ctrl.value === 123456) {
return null;
}
return {
zipCode: { validCode: 123456 }
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment