From 51d79f3e3b4876dd3b8925e8f10cc2f10aa16ff9 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sun, 2 Nov 2014 21:56:45 -0500 Subject: Fix JSHint errors --- httprpc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'httprpc.js') diff --git a/httprpc.js b/httprpc.js index 085b4693d..f7f870d9d 100644 --- a/httprpc.js +++ b/httprpc.js @@ -10,8 +10,8 @@ method: object.call, params: object.args, id: object._id - } - }; + }; + } function formatJsonRpcMessage(message) { var object = JSON.parse(message); @@ -20,7 +20,7 @@ _id: object.id, data: object.result }; - }; + } HttpRpcProvider.prototype.sendRequest = function (payload, cb) { var data = formatJsonRpcObject(payload); @@ -32,7 +32,7 @@ if (request.readyState === 4 && cb) { cb(request); } - } + }; }; HttpRpcProvider.prototype.send = function (payload) { -- cgit v1.2.3