()
| 239 | } |
| 240 | |
| 241 | getFormat() { |
| 242 | return this._isPattern |
| 243 | ? DateFormat.getDateInstance({ |
| 244 | strictParsing: true, |
| 245 | pattern: this._formatPattern, |
| 246 | calendarType: this._primaryCalendarType, |
| 247 | }) |
| 248 | : DateFormat.getDateInstance({ |
| 249 | strictParsing: true, |
| 250 | style: this._formatPattern, |
| 251 | calendarType: this._primaryCalendarType, |
| 252 | }); |
| 253 | } |
| 254 | |
| 255 | get _displayFormat() { |
| 256 | if (this.displayFormat) { |
no test coverage detected