Skip to content

Commit

Permalink
Inverse lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 20, 2022
1 parent dfb1367 commit a599299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/normalize/lib/wild_wild_parser/parse/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const parseQueryString = function (queryString) {
// eslint-disable-next-line max-depth
if (char === ESCAPE) {
parseEscape(state, queryString)
} else if (char === TOKEN_SEPARATOR) {
addToken(state)
} else if (char === ARRAY_SEPARATOR || state.index === queryString.length) {
addQueryArray(state)
} else if (char === TOKEN_SEPARATOR) {
addToken(state)
} else {
state.chars += char
}
Expand Down

0 comments on commit a599299

Please sign in to comment.