| 129 | } |
| 130 | |
| 131 | interface RoundingOpts { |
| 132 | relativeTo: Date | number |
| 133 | } |
| 134 | |
| 135 | export function roundToSingleUnit(duration: Duration, {relativeTo = Date.now()}: Partial<RoundingOpts> = {}): Duration { |
| 136 | relativeTo = new Date(relativeTo) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…