(a, b)
| 132 | : 3 |
| 133 | |
| 134 | const mutationDateSort: MutationSortFn = (a, b) => |
| 135 | a.state.submittedAt < b.state.submittedAt ? 1 : -1 |
| 136 | |
| 137 | const mutationStatusSort: MutationSortFn = (a, b) => { |
| 138 | if (getMutationStatusRank(a) === getMutationStatusRank(b)) { |
no outgoing calls
no test coverage detected