* @param {Date} date * @returns {boolean}
(date)
| 580 | * @returns {boolean} |
| 581 | */ |
| 582 | function isValidDate (date) { |
| 583 | return date instanceof Date && Number.isFinite(date.valueOf()) |
| 584 | } |
| 585 | |
| 586 | module.exports = CacheHandler |
no outgoing calls
no test coverage detected
searching dependent graphs…