Skip to content

Commit 8ee82af

Browse files
committed
fix line length
1 parent dcb6cde commit 8ee82af

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/net.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,10 @@ Socket.prototype.connect = function() {
985985

986986
if (pipe) {
987987
if (typeof path !== 'string') {
988-
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'options.path', 'string', path);
988+
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
989+
'options.path',
990+
'string',
991+
path);
989992
}
990993
internalConnect(this, path);
991994
} else {

0 commit comments

Comments
 (0)