Skip to content

Commit 6e85cda

Browse files
Update test/scripts/echo-server.js
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent fc92a7e commit 6e85cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/scripts/echo-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const args = { /* defaults */
2525

2626
/* Parse command line options */
2727
const pattern = /^--(.*?)(?:=(.*))?$/;
28-
process.argv.forEach(function(value) {
28+
process.argv.forEach((value) => {
2929
const match = pattern.exec(value);
3030
if (match) {
3131
args[match[1]] = match[2] ? match[2] : true;

0 commit comments

Comments
 (0)