Angular - Reactive Forms
Identify the error in this custom validator code snippet:
function minLengthFive(control: AbstractControl) {
if (control.value.length < 5) {
return { minLengthFive: true };
}
}