()
| 769 | } |
| 770 | |
| 771 | get displayValue() { |
| 772 | if (!this.value) { |
| 773 | return ""; |
| 774 | } |
| 775 | |
| 776 | if (!this.getValueFormat().parse(this.value, true)) { |
| 777 | return this.value; |
| 778 | } |
| 779 | |
| 780 | return this.getDisplayFormat().format(this.getValueFormat().parse(this.value, true), true); |
| 781 | } |
| 782 | |
| 783 | getFormat() { |
| 784 | let dateFormat; |
nothing calls this directly
no test coverage detected