We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sindresorhus
Learn more about funding links in repositories.
Report abuse
1 parent 7dd3956 commit 130d0adCopy full SHA for 130d0ad
test.js
@@ -20,3 +20,7 @@ test('ignores control characters', t => {
20
t.is(m(String.fromCharCode(159)), 0);
21
t.is(m('\u001b'), 0);
22
});
23
+
24
+test.failing('handles combining characters', t => {
25
+ t.is(m('x\u0300'), 1);
26
+});
0 commit comments