Advertisement
Guest User

Untitled

a guest
Sep 11th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import { FormControl } from '@angular/forms';
  2.  
  3. export function isNumber(c: FormControl) {
  4. return !isNaN(c.value) ? null : {
  5. isNumber: {
  6. valid: false
  7. }
  8. };
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement