Gozala / querystring

Node's querystring module for all engines.
MIT License
287 stars 72 forks source link

% string querystring error #30

Open chengwangping opened 6 years ago

chengwangping commented 6 years ago

implement querystring.parse('a=100%') function error

kyo4311 commented 5 years ago
decodeURIComponent('100%')  // It not working

So! Keep URL use '%' change to '%25'

decodeURIComponent('100%25')  // It working now
carera commented 4 years ago

FYI This doesn't crash in the NodeJS native module querystring