(date)
| 40 | } |
| 41 | |
| 42 | function date2String(date) { |
| 43 | var year = date.getFullYear(), |
| 44 | month = (date.getMonth() + 1 + 100 + '').substr(1), |
| 45 | day = (date.getDate() + 100 + '').substr(1); |
| 46 | return year + month + day; |
| 47 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…