Angular - Reactive Forms
Given this custom validator code, what will be the validation result for input value '12345'?
function numericValidator(control: AbstractControl): ValidationErrors | null {
const valid = /^[0-9]+$/.test(control.value);
return valid ? null : { numeric: true };
}
