File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
lib/node_modules/@stdlib/string Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,12 @@ tape( 'the function removes all whitespace characters at the beginning of a stri
8787 t . equal ( actual , expected , 'removes \\u1680' ) ;
8888
8989 // Note: removed support to match Unicode 6.3.0 and later.
90- // expected = 'beep';
91- // actual = ltrim( '\u180ebeep' );
92- // t.equal( actual, expected, 'removes \\u180e' );
90+
91+ /*
92+ expected = 'beep';
93+ actual = ltrim( '\u180ebeep' );
94+ t.equal( actual, expected, 'removes \\u180e' );
95+ */
9396
9497 expected = 'beep' ;
9598 actual = ltrim ( '\u2000beep' ) ;
Original file line number Diff line number Diff line change @@ -107,9 +107,12 @@ tape( 'the function removes all whitespace characters at the beginning and end o
107107 t . equal ( actual , expected , 'removes \\u1680' ) ;
108108
109109 // Note: removed support to match Unicode 6.3.0 and later.
110- // expected = 'beep';
111- // actual = trim( '\u180ebeep\u180e' );
112- // t.equal( actual, expected, 'removes \\u180e' );
110+
111+ /*
112+ expected = 'beep';
113+ actual = trim( '\u180ebeep\u180e' );
114+ t.equal( actual, expected, 'removes \\u180e' );
115+ */
113116
114117 expected = 'beep' ;
115118 actual = trim ( '\u2000beep\u2000' ) ;
You can’t perform that action at this time.
0 commit comments