()
| 305 | } |
| 306 | |
| 307 | getISOFormat() { |
| 308 | if (!this._isoFormatInstance) { |
| 309 | this._isoFormatInstance = DateFormat.getDateInstance({ |
| 310 | strictParsing: true, |
| 311 | pattern: "yyyy-MM-dd", |
| 312 | calendarType: this._primaryCalendarType, |
| 313 | }); |
| 314 | } |
| 315 | return this._isoFormatInstance; |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | export default DateComponentBase; |
no test coverage detected