Skip to content
This repository was archived by the owner on Aug 23, 2019. It is now read-only.

Commit a0c877e

Browse files
committed
chore: fix linting
1 parent fc5a0c8 commit a0c877e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/protocol-muxer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function protocolMuxer (protocols, observer) {
1616
const handler = (protocolName, _conn) => {
1717
const protocol = protocols[protocolName]
1818
if (protocol) {
19-
const handlerFunc = protocol && protocol.handlerFunc
19+
const handlerFunc = protocol && protocol.handlerFunc
2020
if (handlerFunc) {
2121
const conn = observeConn(null, protocol, _conn, observer)
2222
handlerFunc(protocol, conn)

0 commit comments

Comments
 (0)