Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed May 2, 2023
1 parent 73439ee commit 61b0fde
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/time/src/timeMath.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,8 @@ export const TimeMath = harden({
divideRelRel,
modAbsRel,
modRelRel,
compareAbs: (abs1, abs2) => compareValues(abs1, abs2, absValue(abs1), absValue(abs2)),
compareRel: (rel1, rel2) => compareValues(rel1, rel2, relValue(rel1), relValue(rel2)),
compareAbs: (abs1, abs2) =>
compareValues(abs1, abs2, absValue(abs1), absValue(abs2)),
compareRel: (rel1, rel2) =>
compareValues(rel1, rel2, relValue(rel1), relValue(rel2)),
});

0 comments on commit 61b0fde

Please sign in to comment.