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.
require('query-string').parse('hasOwnProperty&hasOwnProperty');
Unsafe usage of hasOwnProperty means that parsing certain query strings will throw an error.
hasOwnProperty
The following cases are also not working correctly:
qs.parse('__proto__'); qs.parse('__proto__&__proto__');
Object.create(null) should fix the problem.
Object.create(null)