()
| 43 | } |
| 44 | |
| 45 | getPrediction() { |
| 46 | const timestamp = Number(this.getPredictionTimestamp()); |
| 47 | if (Number.isNaN(timestamp)) return ''; |
| 48 | const progress = new IntlDateTime(timestamp).getRelativeNowFriendlyText('Progress', { |
| 49 | style: 'significantLongNarrow', |
| 50 | }); |
| 51 | return progress; |
| 52 | } |
| 53 | |
| 54 | getPredictionText() { |
| 55 | const timestamp = Number(this.getPredictionTimestamp()); |
no test coverage detected