(date)
| 106 | }, |
| 107 | |
| 108 | isDateInCurrent(date) { |
| 109 | const { currentDate } = this.data; |
| 110 | return currentDate.some(item => { |
| 111 | return compareDay(item, date) === 0; |
| 112 | }); |
| 113 | }, |
| 114 | |
| 115 | getMultipleDayType(date) { |
| 116 | const { currentDate } = this.data; |
nothing calls this directly
no test coverage detected