From 2b816af9a8769c4c8043acbcde0c66572272f063 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Wed, 19 Sep 2018 21:12:37 -0500 Subject: [PATCH] eslint doesn't like `void 0` here --- lib/modules/blockchain_process/proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/blockchain_process/proxy.js b/lib/modules/blockchain_process/proxy.js index fc731b4f..f310990c 100644 --- a/lib/modules/blockchain_process/proxy.js +++ b/lib/modules/blockchain_process/proxy.js @@ -65,7 +65,7 @@ const parseResponse = function (ipc, resBody) { }; exports.serve = async function (ipc, host, port, ws, origin) { - const _origin = origin ? origin.split(',')[0] : void 0; + const _origin = origin ? origin.split(',')[0] : undefined; const start = Date.now(); function awaitTarget() {