eslint doesn't like `void 0` here

This commit is contained in:
Michael Bradley, Jr 2018-09-19 21:12:37 -05:00
parent 1408abf8d9
commit 2b816af9a8
1 changed files with 1 additions and 1 deletions

View File

@ -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() {