Skip to content

Commit 66725a2

Browse files
committed
Clarify sort workaround
Issue: #1 Issue: devongovett/regexgen#31
1 parent 7e1c1e6 commit 66725a2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

script/get-sequences.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
const getSequences = (packageName) => {
22
const sequences = require(`${packageName}/Sequence_Property/Emoji_Test/index.js`);
3+
// TODO: Remove sorting logic once the upstream bug is addressed.
4+
// https://github.com/devongovett/regexgen/issues/31
35
sequences.sort((a, b) => {
46
// Longest strings first.
57
const aLength = [...a].length;

0 commit comments

Comments
 (0)