Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style(node): Resolve warns shown by "yarn lint"
  • Loading branch information
xgedev authored and Lms24 committed Dec 29, 2025
commit 0df598b2033393755553fce259d27d9e720eb3df
2 changes: 1 addition & 1 deletion packages/node-core/src/transports/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function createRequestExecutor(
body = body.pipe(createGzip());
}

const hostnameIsIPv6 = hostname.startsWith("[");
const hostnameIsIPv6 = hostname.startsWith('[');

const req = httpModule.request(
{
Expand Down