(defaultValue=this.props.value)
| 22 | }, |
| 23 | |
| 24 | initDate(defaultValue=this.props.value){ |
| 25 | const {year, month, day} = dateStr2Obj(defaultValue, this.dateParams()); |
| 26 | return obj2DateStr(year, month, day); |
| 27 | }, |
| 28 | |
| 29 | dateParams(){ |
| 30 | const {begin, end} = this.props; |
nothing calls this directly
no test coverage detected
searching dependent graphs…