Skip to content

Commit 3b86ec3

Browse files
committed
fix: fix failing tests and linting
1 parent 62980a0 commit 3b86ec3

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/string

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/string/base/remove-last-grapheme-cluster/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
const nextGraphemeClusterBreak = require('@stdlib/string/next-grapheme-cluster-break');
23+
var nextGraphemeClusterBreak = require('@stdlib/string/next-grapheme-cluster-break');
2424

2525

2626
// MAIN //

lib/node_modules/@stdlib/string/remove-first/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ tape( 'the function supports removing the first `n` characters of a provided str
359359
t.strictEqual( out, '书/六書', 'returns expected value' );
360360

361361
out = removeFirst( '🌷', 1, opts );
362-
t.strictEqual( out, '\udf37', 'returns expected value' );
362+
t.strictEqual( out, '', 'returns expected value' );
363363
t.end();
364364
});
365365

0 commit comments

Comments
 (0)