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
87
87
t . equal ( actual , expected , 'removes \\u1680' ) ;
88
88
89
89
// 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
+ */
93
96
94
97
expected = 'beep' ;
95
98
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
107
107
t . equal ( actual , expected , 'removes \\u1680' ) ;
108
108
109
109
// 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
+ */
113
116
114
117
expected = 'beep' ;
115
118
actual = trim ( '\u2000beep\u2000' ) ;
You can’t perform that action at this time.
0 commit comments