Gozala/querystring

% string querystring error

chengwangping opened this issue · 2 comments

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

decodeURIComponent('100%')  // It not working

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

decodeURIComponent('100%25')  // It working now

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