We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1c1e6 commit 66725a2Copy full SHA for 66725a2
script/get-sequences.js
@@ -1,5 +1,7 @@
1
const getSequences = (packageName) => {
2
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
5
sequences.sort((a, b) => {
6
// Longest strings first.
7
const aLength = [...a].length;
0 commit comments