- Version: 8.0.0/8.1.2
- Platform: Windows 10 x64/Linux x64
At Node 7.* or before, the result of require('querystring').parse('a=%20+&') is { a: ' ' }. However, at Node 8.0.0 or 8.1.2, the result of require('querystring').parse('a=%20+&') is { a: '%20 ' }. %20 doesn't decode when it is before +.
At Node 7.* or before, the result of
require('querystring').parse('a=%20+&')is{ a: ' ' }. However, at Node 8.0.0 or 8.1.2, the result ofrequire('querystring').parse('a=%20+&')is{ a: '%20 ' }.%20doesn't decode when it is before+.