(date)
| 82 | } |
| 83 | |
| 84 | function increaseTimeToDate(date) { |
| 85 | var toDate = moment(date, ['MM-DD-YYYY', 'MM-DD-YYYY HH:mm:ss']); |
| 86 | return increaseTimeByDate(toDate); |
| 87 | } |
| 88 | |
| 89 | function increaseTimeToEpochDate(epochDate) { |
| 90 | var toTime = moment.unix(epochDate); |
nothing calls this directly
no test coverage detected