File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/node_modules/@stdlib/string
base/remove-last-grapheme-cluster/lib Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
21
21
// MODULES //
22
22
23
- const nextGraphemeClusterBreak = require ( '@stdlib/string/next-grapheme-cluster-break' ) ;
23
+ var nextGraphemeClusterBreak = require ( '@stdlib/string/next-grapheme-cluster-break' ) ;
24
24
25
25
26
26
// MAIN //
Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ tape( 'the function supports removing the first `n` characters of a provided str
359
359
t . strictEqual ( out , '书/六書' , 'returns expected value' ) ;
360
360
361
361
out = removeFirst ( '🌷' , 1 , opts ) ;
362
- t . strictEqual ( out , '\udf37 ' , 'returns expected value' ) ;
362
+ t . strictEqual ( out , '' , 'returns expected value' ) ;
363
363
t . end ( ) ;
364
364
} ) ;
365
365
You can’t perform that action at this time.
0 commit comments