(self, that)
| 533 | * @since 2.0.0 |
| 534 | */ |
| 535 | export const Equivalence: equivalence.Equivalence<Duration> = (self, that) => |
| 536 | matchWith(self, that, { |
| 537 | onMillis: (self, that) => self === that, |
| 538 | onNanos: (self, that) => self === that |
| 539 | }) |
| 540 | |
| 541 | const _min = order.min(Order) |
| 542 |
no outgoing calls
no test coverage detected