All files / src/enum time-interval.ts

100% Statements 9/9
100% Branches 2/2
100% Functions 1/1
100% Lines 9/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 122x 2x 2x 2x 2x 2x 2x 2x     2x  
enum TimeInterval {
	ONE_SECOND = 1000,
	ONE_MINUTE = 1000 * 60,
	ONE_HOUR = 1000 * 60 * 60,
	ONE_DAY = 1000 * 60 * 60 * 24,
	ONE_WEEK = 1000 * 60 * 60 * 24 * 7,
	ONE_MONTH = 1000 * 60 * 60 * 24 * 30,
	ONE_YEAR = 1000 * 60 * 60 * 24 * 365
}
 
export default TimeInterval;