()
| 67 | } |
| 68 | |
| 69 | getLast() { |
| 70 | const timestamp = Number(this.getLastTimestamp()); |
| 71 | if (Number.isNaN(timestamp)) return ''; |
| 72 | const last = new IntlDateTime(timestamp).getRelativeNowFriendlyText('Progress', { |
| 73 | style: 'significantLongNarrow', |
| 74 | }); |
| 75 | return last; |
| 76 | } |
| 77 | |
| 78 | getLastText() { |
| 79 | const timestamp = Number(this.getLastTimestamp()); |
no test coverage detected