Skip to content

Commit

Permalink
querystring no longer inherits from Object.prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
vHanda committed May 25, 2016
1 parent a0fc19b commit 6d24241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/bodyParameterParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function BodyParameterParser() {

BodyParameterParser.prototype._unserializeParameters = function _unserializeParameters(collection) {
for (var key in collection) {
if (collection.hasOwnProperty(key)) {
if (Object.hasOwnProperty.call(collection, key)) {
var data;
try {
data = JSON.parse(collection[key]);
Expand Down

0 comments on commit 6d24241

Please sign in to comment.