for string here so it also works with arrays
return value == null || value.length === 0;
}
static required(control: AbstractControl): ValidationErrors|null {
return isEmptyInputValue(control.value) ? {'required': true} : null;
}
Исходники - лучший аргумент 🙂
Обсуждают сегодня