()
| 138 | } |
| 139 | |
| 140 | get _minDate() { |
| 141 | const key = `${this.minDate}__${this._primaryCalendarType}`; |
| 142 | if (!this._cachedMinDate || this._cachedMinDate.key !== key) { |
| 143 | const parsed = this.minDate ? this._getMinMaxCalendarDateFromString(this.minDate) : undefined; |
| 144 | this._cachedMinDate = { key, value: parsed || getMinCalendarDate(this._primaryCalendarType) }; |
| 145 | } |
| 146 | return this._cachedMinDate.value; |
| 147 | } |
| 148 | |
| 149 | get _maxDate() { |
| 150 | const key = `${this.maxDate}__${this._primaryCalendarType}`; |
nothing calls this directly
no test coverage detected