Open arcusfelis opened 4 years ago
Hi, nice work.
I have only one issue: "Can only sort arrays" error when sorting something like Int32Array. Because of the usage of Array.isArray there https://github.com/mziccard/node-timsort/blob/master/src/timsort.js#L910
Array.isArray
Array.isArray(new Int32Array(1)) false
Though, if the check is removed, the library works good.
Hi, nice work.
I have only one issue: "Can only sort arrays" error when sorting something like Int32Array. Because of the usage of
Array.isArray
there https://github.com/mziccard/node-timsort/blob/master/src/timsort.js#L910Though, if the check is removed, the library works good.