2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-15 07:43:22 +00:00

BugFix: compare odd size elements, like empty line

This commit is contained in:
Chris van Marle
2017-10-12 14:22:35 +02:00
parent b61a1b4edb
commit 390d5927a4
2 changed files with 3 additions and 3 deletions

View File

@@ -249,7 +249,7 @@ const SeqUtils = {
}
}
return 0;
return a.localeCompare(b);
},
};