Checks whether a value is valid.
(value: D | null)
| 421 | |
| 422 | /** Checks whether a value is valid. */ |
| 423 | private _isValid(value: D | null): boolean { |
| 424 | return !value || this._dateAdapter.isValid(value); |
| 425 | } |
| 426 | |
| 427 | /** Transforms an arbitrary value into a value that can be assigned to a date-based input. */ |
| 428 | private _transformDateInput<D>(value: unknown): D | null { |
no test coverage detected