% string querystring error
chengwangping opened this issue · 2 comments
chengwangping commented
implement querystring.parse('a=100%') function error
kyo4311 commented
decodeURIComponent('100%') // It not working
So!
Keep URL use '%' change to '%25'
decodeURIComponent('100%25') // It working now
carera commented
FYI This doesn't crash in the NodeJS native module querystring