Skip to content

Commit

Permalink
bump for hasOwnProperty fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ded committed Nov 1, 2013
1 parent be9fec0 commit afe79de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"async",
"sync"
],
"version": "0.9.2",
"version": "0.9.3",
"homepage": "https://github.com/ded/reqwest",
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions reqwest.js
@@ -1,4 +1,4 @@
/*! version: 0.9.2 */
/*! version: 0.9.3 */
/*!
* Reqwest! A general purpose XHR connection manager
* (c) Dustin Diaz 2013
Expand Down Expand Up @@ -535,7 +535,7 @@
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for (prefix in o) {
buildParams(prefix, o[prefix], traditional, add)
if (o.hasOwnProperty(prefix)) buildParams(prefix, o[prefix], traditional, add)
}
}

Expand Down
4 changes: 2 additions & 2 deletions reqwest.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit afe79de

Please sign in to comment.