chore: fix lint

License: MIT
Signed-off-by: Jacob Heun <jacobheun@gmail.com>
This commit is contained in:
Jacob Heun 2019-09-06 11:30:46 +02:00
parent 6f04526083
commit 99f237bba1
No known key found for this signature in database
GPG Key ID: CA5A94C15809879F
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ const { AbortError } = require('interface-transport')
function noop () {}
class TCP {
constructor(options) {
constructor (options) {
assert(options && options.upgrader, 'An Upgrader must be provided')
this.upgrader = options.upgrader
}

View File

@ -2,5 +2,5 @@
module.exports = {
upgradeOutbound: (conn) => conn,
upgradeInbound: (conn) => conn,
upgradeInbound: (conn) => conn
}