()
| 639 | } |
| 640 | |
| 641 | getFirstDayOfWeek() { |
| 642 | const { firstDayOfWeek } = this.props; |
| 643 | if (firstDayOfWeek == null) { |
| 644 | return moment.localeData().firstDayOfWeek(); |
| 645 | } |
| 646 | |
| 647 | return firstDayOfWeek; |
| 648 | } |
| 649 | |
| 650 | getWeekHeaders() { |
| 651 | const { weekDayFormat } = this.props; |
no outgoing calls
no test coverage detected