jeancroy opened this issue 9 years ago · 1 comments
The comparator looks like this
ascendingPrefixComparator = (a, b) -> a.prefix - b.prefix
However those prefixes are strings and "ab" - "xy" results in NaN
"ab" - "xy"
NaN
You're right, we should use <; > etc.
<; >