From 3da589c56e3ae3ecd32f614b29fdac0782d2f6d6 Mon Sep 17 00:00:00 2001 From: Mohamed Omar Date: Sun, 6 Oct 2019 20:03:40 +0200 Subject: [PATCH] [fix] linting issues with spacing and semicolon --- lib/parse.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/parse.js b/lib/parse.js index e7c08c4f..5451714d 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -87,8 +87,8 @@ var parseValues = function parseQueryStringValues(str, options) { val = val.split(','); } - if(part.indexOf('[]=') > -1){ - val = Array.isArray(val) ? [val] : val + if (part.indexOf('[]=') > -1) { + val = Array.isArray(val) ? [val] : val; } if (has.call(obj, key)) {