Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 863f772

Browse files
putxetargos
authored andcommittedDec 1, 2019
cluster: replace var by let in shared_handle.js
PR-URL: #30402 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 99770a0 commit 863f772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/internal/cluster/shared_handle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function SharedHandle(key, address, port, addressType, fd, flags) {
1111
this.handle = null;
1212
this.errno = 0;
1313

14-
var rval;
14+
let rval;
1515
if (addressType === 'udp4' || addressType === 'udp6')
1616
rval = dgram._createSocketHandle(address, port, addressType, fd, flags);
1717
else

0 commit comments

Comments
 (0)
Please sign in to comment.