Skip to content

Commit

Permalink
now uses node module 'qs' for stringification
Browse files Browse the repository at this point in the history
  • Loading branch information
icodeforlove committed Feb 27, 2013
1 parent e9d782a commit 3ec2897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/requester.js
Expand Up @@ -4,7 +4,7 @@
var http = require('http'),
https = require('https'),
url = require('url'),
qs = require('querystring'),
qs = require('qs'),
FormData = require('form-data'),
fs = require('fs'),
xml2js = require('xml2js'),
Expand Down
5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -30,10 +30,11 @@
"underscore": "~1.4.0",
"xml2js": "~0.2.0",
"colors": "~0.6.0-1",
"promise-object": "~0.0.17"
"promise-object": "~0.0.17",
"qs": "~0.5.3"
},
"scripts": {
"pretest": "node ./test/echo-server.js &",
"test": "vows --spec"
}
}
}

0 comments on commit 3ec2897

Please sign in to comment.