Angular - Reactive Forms
Given this custom validator code, what will be the validation result for input value 'abc123'?
function alphaOnly(control: AbstractControl) {
const valid = /^[a-zA-Z]+$/.test(control.value);
return valid ? null : { alphaOnly: true };
}