We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8dfdc0 commit b3932efCopy full SHA for b3932ef
lib/internal/url.js
@@ -771,8 +771,7 @@ function parseParams(qs) {
771
if (code === CHAR_PERCENT) {
772
encodeCheck = 1;
773
} else if (encodeCheck > 0) {
774
- // eslint-disable-next-line no-extra-boolean-cast
775
- if (!!isHexTable[code]) {
+ if (isHexTable[code] === 1) {
776
if (++encodeCheck === 3) {
777
querystring = require('querystring');
778
encoded = true;
0 commit comments