Commit 1c6b9d15 authored by Iuri Matias's avatar Iuri Matias

make linter happy

parent c252c499
...@@ -36,8 +36,8 @@ Provider.prototype.sendAsync = function (payload, callback) { ...@@ -36,8 +36,8 @@ Provider.prototype.sendAsync = function (payload, callback) {
callback(new Error('unknown method ' + payload.method)) callback(new Error('unknown method ' + payload.method))
} }
Provider.prototype.send = function(payload, callback) { Provider.prototype.send = function (payload, callback) {
this.sendAsync(payload, callback || () => {}) this.sendAsync(payload, callback || function () {})
} }
Provider.prototype.isConnected = function () { Provider.prototype.isConnected = function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment