Skip to content

Commit 17fa26c

Browse files
committed
Use multi-line comment
1 parent 8495b4a commit 17fa26c

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

lib/node_modules/@stdlib/string/left-trim/test/test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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' );

lib/node_modules/@stdlib/string/trim/test/test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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' );

0 commit comments

Comments
 (0)