(n: number)
| 154 | ]; |
| 155 | } |
| 156 | const sgn = (n: number) => (n < 0 ? -1 : n > 0 ? 1 : n === 0 ? 0 : NaN); |
| 157 | |
| 158 | describeNightly('NIGHTLY comparison — order() is a total order', () => { |
| 159 | const xs = orderPool(); |
no outgoing calls
no test coverage detected