(value: unknown)
| 26 | import type {AbstractControl} from './model/abstract_model'; |
| 27 | |
| 28 | function isEmptyInputValue(value: unknown): boolean { |
| 29 | return value == null || lengthOrSize(value) === 0; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Extract the length property in case it's an array or a string. |
no test coverage detected
searching dependent graphs…