The date from which to calculate the number of hours passed.
The number of hours that have passed since the given date.
new Date('2020-01-01T00:00:00Z');;
//=> {date object}
hoursSinceDate(new Date('2020-01-01T00:00:00Z'));;
//=> {number of hours since January 1, 2020}
Generated using TypeDoc
Calculates the number of hours that have passed since the given date.