Skip to content

Commit 88eea90

Browse files
committed
chore: fix Javascript lint errors (issue #7429)
1 parent 541c34e commit 88eea90

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/streams/node/join/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/streams/node/join/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function transform( chunk, encoding, clbk ) {
5757
} else if ( this._init ) {
5858
chunk = new Buffer( chunk, encoding );
5959
len = this._sep.length + chunk.length;
60-
chunk = Buffer.concat( [ this._sep, chunk ], len ); // TODO: replace with stdlib pkg
60+
chunk = Buffer.concat( [ this._sep, chunk ], len ); // replace with stdlib pkg
6161
chunk = chunk.toString( this._encoding );
6262
} else {
6363
this._init = true;
@@ -76,7 +76,7 @@ function transform( chunk, encoding, clbk ) {
7676
*/
7777
function flush( clbk ) {
7878
debug( 'Flushing the stream...' );
79-
clbk(); // TODO: consider supporting an option to append a final separator
79+
clbk(); // consider supporting an option to append a final separator
8080
}
8181

8282
/**

0 commit comments

Comments
 (0)