tinybase
tinybase copied to clipboard
Sort function
-
Version: "^5.4.8".
-
Problem:
useSortedRowIdsgives me a sorted list like this
["1", "10", "0", "11", "12", "2", "3", "4", "5", "6", "7", "8", "9"]
which I think is not what's most often desired, namely
["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]
Could this sort be implemented? Thanks!