(value: string)
| 409 | } |
| 410 | |
| 411 | isValidMax(value: string): boolean { |
| 412 | const parts = this._splitValueByDelimiter(value).filter(str => str.trim() !== ""); |
| 413 | |
| 414 | return parts.length <= 2 && parts.every(dateString => super.isValidMax(dateString)); |
| 415 | } |
| 416 | |
| 417 | /** |
| 418 | * Extract both dates as timestamps, flip if necessary, and build (which will use the desired format so we enforce the format too) |
no test coverage detected