@seedalpha/qs
v1.0.11
Published
Querystring for node and browser
Readme
qs
Querystring decode / encode for node and browser
Changelog
1.0.1:
- Run tests before publish / commit
1.0.0:
- Initial release
Installation
$ npm install seed-qs --saveUsage
var qs = require('qs');
qs({ a: 'b', c: 1 }); // 'a=b&c=1'
qs.parse('a=b&c=1'); // { a: 'b', c: 1 }Development
$ git clone [email protected]:seedalpha/qs.git
$ cd qs
$ npm install
$ npm testAuthor
Vladimir Popov [email protected]
License
©2014 Seedalpha
