https://github.com/hapijs/qs/blob/master/lib/parse.js#L32 When the object is created via `Object.create(null)` it does not have object properties. Instead, the following should be used: ``` js Object.prototype.hasOwnProperty.call(obj, key) ```
https://github.com/hapijs/qs/blob/master/lib/parse.js#L32
When the object is created via
Object.create(null)it does not have object properties. Instead, the following should be used: