We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b41d50 commit 228b921Copy full SHA for 228b921
lib/node_modules/@stdlib/string/base/remove-first-code-point/test/test.js
@@ -71,7 +71,7 @@ tape( 'the function removes the first Unicode code point of a provided string (U
71
out = removeFirst( '𐒻𐓟', 1 );
72
t.strictEqual( out, '𐓟', 'returns expected value' );
73
74
- out = removeFirst( '\uDC00', 1 );
+ out = removeFirst( '\uD800', 1 );
75
t.strictEqual( out, '', 'returns expected value' );
76
77
t.end();
0 commit comments