Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
silverbucket committed Feb 6, 2022
1 parent 489fd7c commit 3a40837
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,21 +334,10 @@ This means that you need to instantiate the socket you want. Once you upgrade th
socket, you give up ownership of it, but gain ownership of the upgraded socket.

```
<<<<<<< HEAD
var net = require("net");
=======
<<<<<<< Updated upstream
var NetSocket = require("net").Socket;
>>>>>>> d2dca0d (merge)
var IrcSocket = require("irc-socket");
var ircSocket = IrcSocket({
=======
const net = require("net");
const IrcSocket = require("irc-socket");
const ircSocket = IrcSocket({
>>>>>>> Stashed changes
port: 6667,
server: "irc.someircnetwork.net",
nicknames: ["freddy", "freddy_"],
Expand All @@ -363,27 +352,11 @@ option that was supported, you should instead pass the option in the
connectOptions object.

```
<<<<<<< HEAD
var net = require("net");
=======
<<<<<<< Updated upstream
var NetSocket = require("net").Socket;
>>>>>>> d2dca0d (merge)
var IrcSocket = require("irc-socket");
var ircSocket = IrcSocket({
<<<<<<< HEAD
socket: net,
=======
socket: netSocket,
=======
const net = require("net");
const IrcSocket = require("irc-socket");
const ircSocket = IrcSocket({
socket: net,
>>>>>>> Stashed changes
>>>>>>> d2dca0d (merge)
port: 6667,
server: "irc.someircnetwork.net",
nicknames: ["freddy", "freddy_"],
Expand All @@ -400,17 +373,10 @@ For what was a `secure` socket, you must instead pass in the
TLS socket object.

```
<<<<<<< HEAD
var tls = require("tls");
var IrcSocket = require("irc-socket");
var IrcSocket = IrcSocket({
=======
const tls = require("tls");
const IrcSocket = require("irc-socket");
const IrcSocket = IrcSocket({
>>>>>>> d2dca0d (merge)
socket: tls,
...
connectionOptions: {rejectUnauthorized: false}
Expand Down

0 comments on commit 3a40837

Please sign in to comment.