Package Exports
- query-string
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (query-string) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
query-string 
Parse and stringify URL query strings
Install
Download manually or with a package-manager.
npm
npm install --save query-stringBower
bower install --save query-stringComponent
component install sindresorhus/query-stringExample using Node.js
var queryString = require('query-string');
var url = 'http://sindresorhus.com?foo=bar'.split('?');
var parsed = queryString.parse(url[1]);
console.log(parsed);
// {foo: 'bar'}
parsed.foo = 'unicorn';
parsed.ilike = 'pizza';
console.log(url[0] + '?' + queryString.stringify(parsed));
// http://sindresorhus.com?foo=unicorn&ilike=pizzaAPI
queryString.parse()
Parse a query string into an object.
queryString.stringify()
Stringify an object into a query string.
License
MIT © Sindre Sorhus