From c04f2dd03bd9d5f4b5e545bfa899bb1905b1206e Mon Sep 17 00:00:00 2001 From: Behind The Math Date: Wed, 10 Jan 2018 00:18:08 -0500 Subject: [PATCH] Fix lint error --- lib/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request.js b/lib/request.js index 59877c7..9a4e5b8 100644 --- a/lib/request.js +++ b/lib/request.js @@ -15,7 +15,7 @@ module.exports = function(location, options, callback) { } } - request.onerror = function (e) { + request.onerror = function(e) { console.log(e) callback(null, request) }